Commit Graph

24370 Commits

Author SHA1 Message Date
James Bardin 9ebcbe1d60 update CHANGELOG.md 2019-07-16 14:08:10 -04:00
James Bardin bb17734bb6
Merge pull request #22037 from hashicorp/jbardin/ssh-alive
monitor ssh connection live-ness
2019-07-16 14:04:13 -04:00
Pam Selle 0111498e9a
Merge pull request #22075 from schmidtd/schmidtd-doc-typo
Simple typo in example artifactory backend subpath
2019-07-16 13:57:43 -04:00
Chris Griggs 1187c59683
Merge pull request #22089 from hashicorp/cgriggs01-community-links
add/remove community providers
2019-07-16 09:59:02 -07:00
cgriggs01 0d15d262a2 add/remove community providers 2019-07-16 09:36:27 -07:00
David Schmidt 91113aee83
Typo in example artifactory backend subpath 2019-07-15 18:16:56 -04:00
Pam Selle e354708c39
Merge pull request #22070 from minamijoyo/fix-typo-in-meta-runoperation
docs: Fix typo in (*Meta) RunOperation comments
2019-07-15 10:51:43 -04:00
Pam Selle 40d792c5a1
Merge pull request #21828 from nyurik/patch-1
clarify config block in terraform_remote_state
2019-07-15 10:51:20 -04:00
Masayuki Morita ca9b643c73 docs: Fix typo in (*Meta) RunOperation comments 2019-07-15 22:32:35 +09:00
Yuri Astrakhan 0bd29ce194 clarify config block in terraform_remote_state
This seems to be a common mistake - saw it in StackOverflow
and in several issues.
2019-07-15 13:05:45 +02:00
James Bardin 56e33a4546 update CHANGELOG.md 2019-07-12 18:11:20 -04:00
Chris Griggs 18a5ff61c2
Merge pull request #22058 from hashicorp/cgriggs01-avi-release
[website] AVI Networks provider
2019-07-12 14:49:18 -07:00
James Bardin 366f8c1cbc
Merge pull request #22057 from hashicorp/jbardin/dynamic-set-blocks
dynamic set blocks produce inconsistent final plan
2019-07-12 17:10:39 -04:00
James Bardin efd2a6cef6 dynamic set block test 2019-07-12 16:48:49 -04:00
James Bardin 7a183a0e90 don't assert set block length with unknowns
If a planned NestingList block value looks like it may represent a
dynamic block, we don't check the length since it may be unknown. This
check was missing in the NestingSet case, but it applies for the same
reason.

<
2019-07-12 16:48:49 -04:00
Pam Selle 23a187d85d
Merge pull request #21739 from hasheddan/s3-backend-comment-typo
s3 backend: minor typo in putMD5 comment
2019-07-12 14:01:26 -04:00
Pam Selle c44be6e55a
Update README.md 2019-07-12 13:57:07 -04:00
Pam Selle 21b1364535
Merge pull request #21553 from zippy1981/zippy1981-patch-1
Updated docs for using az cli or service principle
2019-07-12 13:55:41 -04:00
Brian Flad a08c8b2a62
Update CHANGELOG for #21908 2019-07-12 13:55:25 -04:00
Pam Selle 19b8a9c02f
Merge pull request #21715 from petems/minor_spelling_fixes
Minor spelling fixes
2019-07-12 13:54:19 -04:00
Pam Selle 883300f6bc
Merge pull request #21840 from Anbcorp/patch-1
Fix typo in environment variable
2019-07-12 13:53:51 -04:00
Pam Selle 4d596fffc5
Update CHANGELOG.md 2019-07-12 13:51:09 -04:00
Pam Selle 1666df3668
Merge pull request #21911 from Biteable/no-nopop-in-plan-show
Fixes #21907
2019-07-12 13:49:50 -04:00
Chris Arcand 275ecf96f2
Merge pull request #22042 from hashicorp/012-replace-regex-docs
Added regex details to replace() docs
2019-07-12 12:46:31 -05:00
Brian Flad fdbabf9e23
Merge pull request #21908 from ajayk/v-aws-sdk-go-v1.20.10
deps: github.com/aws/aws-sdk-go@v1.20.10
2019-07-12 13:46:06 -04:00
Pam Selle d9a229a20e
Merge pull request #21999 from imjoey/patch-1
Update the URL of oVirt provider in docs.
2019-07-12 13:43:32 -04:00
Pam Selle 5cd551f716
Merge pull request #21887 from jmcgeheeiv/patch-1
Add "leading zeros" for the sake of SEO
2019-07-12 13:42:55 -04:00
cgriggs01 45c4b60704 [website] AVI Networks provider 2019-07-12 09:56:51 -07:00
Chris Arcand 22385c3198 Added regex details to replace() docs 2019-07-12 11:42:20 -05:00
ajayk fd8aca539e update to aws-sdk-go-v1.20.19 2019-07-11 17:52:31 -07:00
tf-release-bot a20e209397 Cleanup after v0.12.4 release 2019-07-11 18:08:35 +00:00
tf-release-bot f17247d3d2
v0.12.4 2019-07-11 17:57:27 +00:00
James Bardin 2206512e58 update ssh and crypto deps 2019-07-11 09:44:22 -04:00
James Bardin 780ca17884 use keepalive replies to detect dead connections
An ssh server should always send a reply packet to the keepalive
request. If we miss those replies for over 2min, consider the connection
dead and abort, rather than block the provisioner indefinitely.
2019-07-11 09:44:22 -04:00
James Bardin 5ac920223f
Merge pull request #22001 from hashicorp/jbardin/update-cty
Update cty and use Path.Equals in depends_on comparisons
2019-07-11 08:49:10 -04:00
Chris Griggs 1a89165705
Merge pull request #22022 from hashicorp/cgriggs01-namefix
[Website] fix signalfx link name
2019-07-10 14:00:08 -07:00
James Bardin a0338df4d4 update ignore_changes to use cty.Path.Equals
Remove reflect.DeepEqual from path comparisons to get reliable results.

The equality issues were only noticed going the grpc interface, so add a
corresponding test to the test provider.
2019-07-10 14:49:37 -04:00
Pam Selle b7bbb942ff
Update CHANGELOG.md 2019-07-10 13:40:25 -04:00
Pam Selle 9f9ac1b326
Merge pull request #17465 from Elethiomel/master
Add support for user configured state object names in swift containers
2019-07-10 13:39:33 -04:00
Colin Fowler cd7bfba141 rebased to terraform master branch 2019-07-10 18:05:10 +01:00
cgriggs01 417b5712b3 fix signalfx name 2019-07-09 17:09:28 -07:00
Chris Griggs d5e0f72cb7
Merge pull request #22018 from hashicorp/cgriggs01-fix-typo
[Website] fix link typo
2019-07-09 11:53:00 -07:00
cgriggs01 efc079268e fix link typo 2019-07-09 11:45:03 -07:00
Chris Griggs e4ec9310c4
Merge pull request #22003 from hashicorp/cgriggs01-signalfx-links
[Website] Add Signalfx provider links
2019-07-08 13:15:54 -07:00
James Bardin 3aa3287073 update CHANGELOG.md 2019-07-08 14:49:50 -04:00
James Bardin 3631c16831
Merge pull request #21979 from bpetermannS11/fix-crash-21896
Fix for crash #21896
2019-07-08 14:44:50 -04:00
cgriggs01 755ca20ea4 add signalfx links 2019-07-08 11:06:38 -07:00
James Bardin e4fbc49fb8 udpate cty 2019-07-08 12:42:28 -04:00
Joey d95bfb9bc2
Tweak the URL of oVirt provider
The previous provider project for oVirt has been moved under oVirt community, with a new URL prefix.
2019-07-08 16:58:38 +08:00
Antoine Jacoutot 37a6331ebf command/version: drop empty line on version check (#14858)
We always add an empty line when asking/checking the version. We should only do
that if there is a new version available. While this is purely cosmetic, it
reads better and is consistent with packer.
2019-07-06 15:18:13 +02:00