Paul Stack
c953a4111b
Merge pull request #9286 from nwalke/issue_9002
...
DOCS: Add reference about AWS IAM policy requirements
2016-10-07 19:33:03 +01:00
Nick Walke
e52ab28218
Add reference about AWS IAM policy requirements
...
This adds a note in the `aws_iam_policy_document` documentation that
`resources` is required by AWS if used on an IAM policy. Also added a
note on `aws_iam_policy` that `aws_iam_policy_document` is a good thing
to use when configuring.
Closes #9002
2016-10-07 13:25:12 -05:00
Paul Stack
888333fb3f
Update CHANGELOG.md
2016-10-07 19:17:38 +01:00
Paul Stack
a085c8d71e
provider/azurerm: Add Load Balancer resources ( #9199 )
...
* provider/azurerm: Add AzureRM Loadbalancer resource
Adds support for the elusive Azure LoadBalancer
* [x] `azurerm_lb`
* [x] `azurerm_lb_backend_address_pool`
* [x] `azurerm_lb_rule`
* [x] `azurerm_lb_nat_rule`
* [x] `azurerm_lb_probe`
* [x] `azurerm_lb_nat_pool`
Test Results:
```
make testacc TEST=./builtin/providers/azurerm TESTARGS='-run=TestAccAzureRMLoadbalancer'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
TF_ACC=1 go test ./builtin/providers/azurerm -v
-run=TestAccAzureRMLoadbalancer -timeout 120m
=== RUN TestAccAzureRMLoadbalancerBackEndAddressPool_basic
--- PASS: TestAccAzureRMLoadbalancerBackEndAddressPool_basic (207.26s)
=== RUN TestAccAzureRMLoadbalancerBackEndAddressPool_removal
--- PASS: TestAccAzureRMLoadbalancerBackEndAddressPool_removal (165.89s)
=== RUN TestAccAzureRMLoadbalancerNatRule_basic
--- PASS: TestAccAzureRMLoadbalancerNatRule_basic (179.30s)
=== RUN TestAccAzureRMLoadbalancerNatRule_removal
--- PASS: TestAccAzureRMLoadbalancerNatRule_removal (180.73s)
=== RUN TestAccAzureRMLoadbalancerRule_basic
--- PASS: TestAccAzureRMLoadbalancerRule_basic (170.40s)
=== RUN TestAccAzureRMLoadbalancerRule_removal
--- PASS: TestAccAzureRMLoadbalancerRule_removal (204.23s)
=== RUN TestAccAzureRMLoadbalancer_basic
--- PASS: TestAccAzureRMLoadbalancer_basic (136.03s)
=== RUN TestAccAzureRMLoadbalancer_frontEndConfig
--- PASS: TestAccAzureRMLoadbalancer_frontEndConfig (214.47s)
=== RUN TestAccAzureRMLoadbalancer_tags
--- PASS: TestAccAzureRMLoadbalancer_tags (215.52s)
=== RUN TestAccAzureRMLoadbalancerProbe_basic
--- PASS: TestAccAzureRMLoadbalancerProbe_basic (183.36s)
=== RUN TestAccAzureRMLoadbalancerProbe_removal
--- PASS: TestAccAzureRMLoadbalancerProbe_removal (185.86s)
=== RUN TestAccAzureRMLoadbalancerNatPool_basic
--- PASS: TestAccAzureRMLoadbalancerNatPool_basic (161.47s)
=== RUN TestAccAzureRMLoadbalancerNatPool_removal
--- PASS: TestAccAzureRMLoadbalancerNatPool_removal (167.38s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/azurerm
1673.852s
```
* provider/azurerm: Documentation for the ARM LB resources
2016-10-07 14:14:26 -04:00
Paul Stack
42c2fe5c85
Merge pull request #9281 from nwalke/issue_9037
...
DOCS: Update interpolation page to show list usage
2016-10-07 16:48:04 +01:00
Paul Stack
822492d620
Update CHANGELOG.md
2016-10-07 16:29:31 +01:00
Paul Stack
181fd25ee4
Merge pull request #9009 from hashicorp/tests-aws-import-eip
...
provider/aws: Add some tests for the Import for aws_eip
2016-10-07 16:25:41 +01:00
Nick Walke
b361347812
Added the word string to make more sense
2016-10-07 10:24:06 -05:00
Nick Walke
10419405a7
Corrected a plural
2016-10-07 10:23:11 -05:00
stack72
5479e178b9
provider/aws: Add some tests for the Import for aws_eip
...
The Read func of the EIP has changed to set the `vpc` boolean value on
the response object having an Address. This is required as an EIP that
was specified, without a domain and then imported, would cause a
perpetual plan.
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSEIP_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/09/23 09:28:32 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSEIP_ -timeout
120m
=== RUN TestAccAWSEIP_importEc2Classic
--- PASS: TestAccAWSEIP_importEc2Classic (116.16s)
=== RUN TestAccAWSEIP_importVpc
--- PASS: TestAccAWSEIP_importVpc (61.89s)
=== RUN TestAccAWSEIP_basic
--- PASS: TestAccAWSEIP_basic (18.86s)
=== RUN TestAccAWSEIP_instance
--- PASS: TestAccAWSEIP_instance (185.95s)
=== RUN TestAccAWSEIP_network_interface
--- PASS: TestAccAWSEIP_network_interface (63.20s)
=== RUN TestAccAWSEIP_twoEIPsOneNetworkInterface
--- PASS: TestAccAWSEIP_twoEIPsOneNetworkInterface (65.64s)
=== RUN TestAccAWSEIP_associated_user_private_ip
--- PASS: TestAccAWSEIP_associated_user_private_ip (201.34s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 713.072s
```
2016-10-07 16:21:11 +01:00
Nick Walke
04d0d0f0ae
Added explicit map and list variable usage
...
This page did not show how to actually use a list as a list. The
variables page states that "The usage of maps, list, strings, etc. is
documented fully in the interpolation syntax page", but that wasn't the
case.
I've split them out to list them explicitly and provide examples of
each.
Closes #9037
2016-10-07 10:20:17 -05:00
Paul Stack
4f8685b3ea
Merge pull request #9275 from hashicorp/aws-sdk-1.4.15
...
provider/aws: Bump version of AWS SDK to 1.4.15
2016-10-07 14:22:49 +01:00
Paul Stack
48d09c8a99
Update CHANGELOG.md
2016-10-07 13:43:16 +01:00
Paul Stack
4ac7d0a6bb
Merge pull request #8103 from BedeGaming/validation-helper
...
helper: create validation package to provide common validation functions
2016-10-07 13:42:29 +01:00
Paul Stack
c3b0a363a6
Update CHANGELOG.md
2016-10-07 13:35:48 +01:00
Paul Stack
dd66af0fa0
Merge pull request #8701 from steveh/feature/aws-billing-service-account
...
provider/aws: Add AWS Billing & Cost Management service account
2016-10-07 13:34:51 +01:00
Paul Stack
8a793cef7b
Update CHANGELOG.md
2016-10-07 13:30:14 +01:00
Paul Stack
250be11fdd
Merge pull request #9073 from carinadigital/GH-9072
...
provider/azurerm: set resource_group_name on resource import
2016-10-07 13:29:08 +01:00
Paul Stack
aeec472fac
Update CHANGELOG.md
2016-10-07 12:27:20 +01:00
Paul Stack
1b2f553d52
Merge pull request #9277 from kwilczynski/fix/return-correct-image-data_source_aws_ami
...
provider/aws: Fix. Return correct AMI image when `most_recent` is set to `true`.
2016-10-07 12:26:29 +01:00
Krzysztof Wilczynski
664c788b26
Fix. Return correct AMI image when `most_recent` is set to `true`.
...
This commit resolves a regression introduced in #9033 that caused an
unfiltered image to be returned despite a search criteria being set
accordingly.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
2016-10-07 12:05:54 +01:00
Paul Stack
3659d7508d
Update CHANGELOG.md
2016-10-07 12:03:57 +01:00
stack72
eb82bff244
Merge branch 'DJRH-import-opsworks-custom-layers'
2016-10-07 12:01:26 +01:00
DJ Home
56f35dd67d
Add ability to import AWS OpsWorks Custom Layers
2016-10-07 11:57:11 +01:00
stack72
4ff762993d
provider/aws: Bump version of AWS SDK to 1.4.15
...
This will include the fix for the error:
```
Request body type has been overwritten. May cause race conditions
```
2016-10-07 11:51:50 +01:00
Joshua Carp
1f8c2e4c69
Parse AWS partition from ARN.
...
[Resolves #5307 ]
2016-10-07 00:08:30 -04:00
Paul Stack
843db01d17
Update CHANGELOG.md
2016-10-06 23:26:11 +01:00
Paul Stack
7bab7f44cb
Merge pull request #9228 from alphagov/datadog_dashboard_type_style
...
Datadog dashboard "type" and "style" options
2016-10-06 23:24:57 +01:00
Paul Stack
d788b19035
Merge pull request #9265 from hashicorp/azurerm-sdk-5.0.0-beta
...
provider/azurerm: Bump SDK version to 5.0.0-beta
2016-10-06 23:12:46 +01:00
Paul Stack
48419882dd
Update CHANGELOG.md
2016-10-06 23:12:35 +01:00
Paul Stack
f955abde58
Merge pull request #9233 from BedeGaming/azurerm-storage-encryption
...
provider/azurerm: add enable_blob_encryption to storage_account resource
2016-10-06 23:11:57 +01:00
Peter McAtominey
0cb6e7df8b
provider/azurerm: add enable_blob_encryption to storage_account resource
...
This allows Storage Service Encryption to be enabled.
TF_ACC=1 go test ./builtin/providers/azurerm -v -run TestAccAzureRMStorageAccount -timeout 120m
=== RUN TestAccAzureRMStorageAccount_importBasic
--- PASS: TestAccAzureRMStorageAccount_importBasic (139.00s)
=== RUN TestAccAzureRMStorageAccount_basic
--- PASS: TestAccAzureRMStorageAccount_basic (151.03s)
=== RUN TestAccAzureRMStorageAccount_blobEncryption
--- PASS: TestAccAzureRMStorageAccount_blobEncryption (149.94s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/azurerm 440.051s
2016-10-06 22:50:02 +01:00
Paul Stack
6e84502b61
Update CHANGELOG.md
2016-10-06 22:39:53 +01:00
Paul Stack
97ad032474
Merge pull request #8859 from carinadigital/arm-vm-fix
...
provider/azurerm: Terraform Plan errors when created resources disappear
2016-10-06 22:38:30 +01:00
Paul Stack
4344a9e777
Merge pull request #9266 from deanwilson/bitbucket_doc_typos
...
Fix typos in the bitbucket_repository example.
2016-10-06 22:11:58 +01:00
Dean Wilson
e0b336e359
Fix typos in the bitbucket_repository example.
2016-10-06 22:08:22 +01:00
stack72
8d862dcb95
provider/azurerm: Bump SDK version to 5.0.0-beta
2016-10-06 22:03:28 +01:00
Paul Stack
8a6d3b2f88
Update CHANGELOG.md
2016-10-06 21:54:35 +01:00
Paul Stack
e012c4fcc5
Merge pull request #9242 from BedeGaming/azurerm-sb-namespace-keys
...
provider/azurerm: expose default keys for servicebus_namespace
2016-10-06 21:53:23 +01:00
Paul Stack
141f7dca24
Merge pull request #9260 from cblecker/google-sidebar
...
Add Google Compute Image docs to sidebar.
2016-10-06 21:20:24 +01:00
Paul Stack
4a9bf1a265
Merge pull request #9261 from hashicorp/bitbucket-documentation
...
Adding the bitbucket provider to the website sidebar
2016-10-06 21:04:55 +01:00
stack72
62bc112b1b
Adding the bitbucket provider to the website sidebar
2016-10-06 19:25:13 +01:00
clint
3e3854ed65
release: clean up after v0.7.5
2016-10-06 17:57:23 +00:00
clint
f7fa785925
v0.7.5
2016-10-06 17:41:22 +00:00
Christoph Blecker
322f95fdfa
Add Google Compute Image docs to sidebar.
...
Docs were originally added in #7960 , but weren't added to the sidebar.
2016-10-06 10:29:12 -07:00
Paul Stack
a4aef78ac5
Merge pull request #9205 from kwilczynski/feature/add-ANY-aws_api_gateway_method
...
provider/aws: Add new "ANY" as valid HTTP method to API Gateway validator.
2016-10-06 16:34:46 +01:00
Krzysztof Wilczynski
1260b3a9b5
Add new "ANY" as valid HTTP method to API Gateway validator.
...
This commit adds a new HTTP method to a list of valid HTTP methods which
is now accepted by API Gateway.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
2016-10-06 16:11:45 +01:00
Paul Stack
f0ee1d5ee1
Merge pull request #9232 from kyxap1/master
...
Addded docker support to Vagrantfile
2016-10-06 11:33:31 +01:00
Paul Stack
2e229f8b45
Merge pull request #9248 from cblecker/remote-state-docs
...
Fix documentation for GCS Remote State
2016-10-06 10:24:31 +01:00
Christoph Blecker
3934279339
Documentation formatting fix
2016-10-05 16:09:10 -07:00