Commit Graph

9515 Commits

Author SHA1 Message Date
Paul Hinze
e5e6b571a5 provider/aws: Fix aws_route panic when destination CIDR block is nil
Fixes #5754
2016-03-22 10:35:22 -05:00
Paul Hinze
bfda541989 Update CHANGELOG.md 2016-03-22 09:48:41 -05:00
Paul Hinze
9000883e23 Merge pull request #5777 from edmundcraske/edmundcraske-patch-1
Fix route53 set_identifier logic
2016-03-22 09:47:13 -05:00
Paul Stack
11c831e41a Merge pull request #5779 from stack72/docs-azurerm
documentation: Reshuffle the AzureRM provider documentation headings
2016-03-22 14:25:54 +00:00
stack72
da589da24c documentation: Reshuffle the AzureRM provider documentation headings 2016-03-22 14:17:36 +00:00
Edmund Craske
edbc4fad13 Fail if failover set when set_identifier unset
Added as per
https://github.com/hashicorp/terraform/pull/5777#issuecomment-199802514
2016-03-22 13:19:24 +00:00
edmundcraske
4aa7d4f7db Fail when weight set and set_identifier not set
Resolves https://github.com/hashicorp/terraform/issues/5776
2016-03-22 12:20:47 +00:00
Paul Stack
a6f6f0da55 Update CHANGELOG.md 2016-03-22 11:58:56 +00:00
James Nugent
22a409e4cc Merge pull request #5774 from stack72/f-aws-iam-user-sshkey
provider/aws: Add `aws_iam_user_ssh_key` resource
2016-03-22 10:29:08 +00:00
Paul Stack
12546c6fca Merge pull request #5065 from tpounds/fix-aws-elb-access-logs-type
provider/aws: Change ELB access_logs to list type
2016-03-22 01:40:14 +00:00
stack72
49c5137ef5 provider/aws: Add documentation for aws_iam_user_ssh_key resource 2016-03-22 01:19:39 +00:00
stack72
7e61947c0a provider/aws: Scaffold aws_iam_user_ssh_key resource 2016-03-22 01:19:16 +00:00
Paul Hinze
9b01acd829 release: clean up after v0.6.14 2016-03-22 00:26:11 +00:00
Paul Hinze
c7e5b24531
v0.6.14 2016-03-21 23:57:35 +00:00
Paul Hinze
d615791a41 Update CHANGELOG.md 2016-03-21 18:34:39 -05:00
Paul Hinze
b2d3f92f7b Merge pull request #4893 from ack/clc
provider/clc: CenturyLink Cloud Provider
2016-03-21 18:33:00 -05:00
Paul Hinze
f6f1d51a6c Update CHANGELOG.md 2016-03-21 18:32:27 -05:00
Paul Hinze
7efc8b25a5 Merge pull request #5772 from hashicorp/phinze/var-concurrent-map-race
terraform: share graph walker's variables lock w/ interpolater
2016-03-21 18:29:25 -05:00
Paul Hinze
024dcc9d32 terraform: share graph walker's variables lock w/ interpolater
The ContextGraphWalker struct includes a lock that's passed down to
BuiltinEvalContext and guards access to interpolation variables as
they're written using SetVariables.

The likely problem being expressed in #5733 is that the same map
reference is also passed down to the Interpolater.Variables field, which
is used for variable lookup.

Here, we plumb the same lock we're using to guard access for writes down
and acquire it before doing variable reads as well. It's not as fine
grained as perhaps it could be, but all the context tests pass and I
believe this should address #5733.
2016-03-21 18:21:44 -05:00
Albert Choi
3971f76747 set dc in tests 2016-03-21 15:34:07 -07:00
Albert Choi
4c4be8124a bump vendored sdk, remove extra fields 2016-03-21 15:34:04 -07:00
Paul Stack
79eb4e1b75 Merge pull request #5769 from henning/patch-3
region available is growing
2016-03-21 21:30:08 +00:00
Henning Sprang
dbb543a1fd region available is growing
Same as just changed in e46d06bd81 ;)
2016-03-21 22:12:46 +01:00
stack72
af30dc675e Merge branch 'henning-patch-2' 2016-03-21 21:05:36 +00:00
Henning Sprang
e46d06bd81 region available is growing 2016-03-21 21:04:30 +00:00
Paul Hinze
9629354399 Update CHANGELOG.md 2016-03-21 15:16:16 -05:00
Paul Hinze
293c6ca68c Revert "Revert "core: Add uuid() interpolate function.""
This reverts commit 661be01d9b.
2016-03-21 15:14:30 -05:00
Paul Hinze
54bae34203 Update CHANGELOG.md 2016-03-21 15:14:11 -05:00
Paul Hinze
20e517475b Merge pull request #5724 from paulodeininger/feature/fix_aws_opsworks_windows
Add DefaultOs on Stack creation (fix Windows stack issue)
2016-03-21 15:10:03 -05:00
Paul Hinze
07bf669d92 Update CHANGELOG.md 2016-03-21 15:08:56 -05:00
Paul Hinze
25d5b6d410 Merge pull request #5635 from hashicorp/phinze/fixup-ignore-changes
core: Address some issues with ignore_changes
2016-03-21 15:08:31 -05:00
Paul Stack
1888733803 Merge pull request #5766 from stack72/f-arm-template
provider/azurerm: Fix a potential panic in the `azurerm_template_deployment` resource
2016-03-21 19:57:21 +00:00
Paul Hinze
bea22b1f10 Update CHANGELOG.md 2016-03-21 14:53:08 -05:00
stack72
6aa11e57e5 provider/azurerm: Fix a potential panic in the
`azurerm_template_deployment` resource
2016-03-21 19:50:30 +00:00
Paul Hinze
1d6cecf514 Merge pull request #5758 from stack72/f-arm-template
provider/azurerm: Adding `azurerm_template_deployment` resource
2016-03-21 14:38:49 -05:00
Paul Hinze
f480ae3430 core: Fix issues with ignore_changes
The ignore_changes diff filter was stripping out attributes on Create
but the diff was still making it down to the provider, so Create would
end up missing attributes, causing a full failure if any required
attributes were being ignored.

In addition, any changes that required a replacement of the resource
were causing problems with `ignore_chages`, which didn't properly filter
out the replacement when the triggering attributes were filtered out.

Refs #5627
2016-03-21 14:20:36 -05:00
stack72
fe79dcf6c1 provider/azurerm: Add the documentation for the AzureRM Template
Deployment resource
2016-03-21 18:59:54 +00:00
stack72
a4cd5eeb2b provider/azurerm: Scaffold the Azure RM Template Deployment resource 2016-03-21 18:51:38 +00:00
Paul Stack
00b349bd57 Update CHANGELOG.md 2016-03-21 18:51:14 +00:00
stack72
fb92896326 Merge branch 'master' of github.com:hashicorp/terraform 2016-03-21 18:48:47 +00:00
stack72
9cfcfed499 Merge branch 'iceycake-issue-5592' 2016-03-21 18:48:32 +00:00
Andy Chan
f7b85777d6 Added documentation for kms alias name_prefix 2016-03-21 18:48:15 +00:00
Paul Hinze
4cb13efe30 Merge pull request #5763 from hashicorp/phinze/traviscookie
travis: switch to unencrypted cookie
2016-03-21 13:48:10 -05:00
Andy Chan
d6cd47fd5e Reformat the kms alias test code 2016-03-21 18:48:00 +00:00
Paul Hinze
d38ee00039 travis: switch to unencrypted cookie
Otherwise rate limiting fix does not work for PRs from forks
2016-03-21 13:35:53 -05:00
James Nugent
910a7fca98 Update CHANGELOG.md 2016-03-21 18:23:03 +00:00
James Nugent
f64854840c Update CHANGELOG.md 2016-03-21 18:20:48 +00:00
David Meyer
f46a629d72 communicator/winrm: Fixed HTTPS when using copy client. 2016-03-21 18:20:48 +00:00
Clint
f7ef36b86d Update CHANGELOG.md 2016-03-21 13:00:32 -05:00
Clint
e62580e7e7 Update CHANGELOG.md 2016-03-21 12:59:53 -05:00