Nick Walke
9a383432d8
Fixed typo ( #12351 )
2017-03-01 22:18:01 +00:00
Paul Stack
177400dbbf
provider/aws: Implement IPV6 Support for ec2 / VPC ( #10538 )
...
* provider/aws: Add support for IPV6 enabled VPC
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSVpc'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/12/09 14:07:31 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSVpc -timeout 120m
=== RUN TestAccAWSVpc_importBasic
--- PASS: TestAccAWSVpc_importBasic (43.03s)
=== RUN TestAccAWSVpc_basic
--- PASS: TestAccAWSVpc_basic (36.32s)
=== RUN TestAccAWSVpc_enableIpv6
--- PASS: TestAccAWSVpc_enableIpv6 (29.37s)
=== RUN TestAccAWSVpc_dedicatedTenancy
--- PASS: TestAccAWSVpc_dedicatedTenancy (36.63s)
=== RUN TestAccAWSVpc_tags
--- PASS: TestAccAWSVpc_tags (67.54s)
=== RUN TestAccAWSVpc_update
--- PASS: TestAccAWSVpc_update (66.16s)
=== RUN TestAccAWSVpc_bothDnsOptionsSet
--- PASS: TestAccAWSVpc_bothDnsOptionsSet (16.82s)
=== RUN TestAccAWSVpc_DisabledDnsSupport
--- PASS: TestAccAWSVpc_DisabledDnsSupport (36.52s)
=== RUN TestAccAWSVpc_classiclinkOptionSet
--- PASS: TestAccAWSVpc_classiclinkOptionSet (38.13s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 739.543s
```
* provider/aws: New Resource: aws_egress_only_internet_gateway
```
make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSEgressOnlyInternetGateway_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/12/09 14:22:16 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSEgressOnlyInternetGateway_ -timeout 120m
=== RUN TestAccAWSEgressOnlyInternetGateway_basic
--- PASS: TestAccAWSEgressOnlyInternetGateway_basic (32.67s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 32.692s
```
* provider/aws: Add IPV6 support to aws_subnet
```
% make testacc TEST=./builtin/providers/aws
% TESTARGS='-run=TestAccAWSSubnet_'
% 1 ↵ ✹ ✭
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/02/27 19:08:34 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSSubnet_
-timeout 120m
=== RUN TestAccAWSSubnet_importBasic
--- PASS: TestAccAWSSubnet_importBasic (69.88s)
=== RUN TestAccAWSSubnet_basic
--- PASS: TestAccAWSSubnet_basic (51.28s)
=== RUN TestAccAWSSubnet_ipv6
--- PASS: TestAccAWSSubnet_ipv6 (90.39s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws211.574s
```
* provider/aws: Add support for running aws_instances with ipv6 addresses
2017-03-01 16:16:59 +00:00
Viktor Voltaire
2a34bfa23e
Changed function_name reference ( #12193 )
2017-02-28 21:31:33 +00:00
Maximilian Bode
0b18d4cb67
Fix emr_cluster docs ( #12273 )
...
* Fix broken list of applications in emr_cluster docs
* Add Flink to list of valid applications in emr_cluster docs
2017-02-27 10:21:44 +00:00
Alexander Hellbom
92399a23e7
Update documentation for CodePipeline (import)
2017-02-27 10:20:50 +00:00
Eric Westfall
a7078ad897
provider/aws: Fix argument reference for aws_ssm_document resource; changes argument permission to the correct name permissions.
2017-02-25 06:26:59 +00:00
Martin Atkins
bc60bd4561
Merge #12188 : AWS Lambda DeadLetterConfig support
2017-02-22 19:24:40 -08:00
Martin Atkins
db9fbe67fa
provider/aws: Lambda DeadLetterConfig support
...
This feature allows sending a notification to either an SQS queue or an
SNS topic when an error occurs running an AWS Lambda function.
This fixes #10630 .
2017-02-22 17:50:10 -08:00
Jake Champlin
ad2860cabe
Merge pull request #12153 from joscha/patch-1
...
docs: remove ambiguousity regarding s3_key
2017-02-22 14:37:00 -05:00
Erik Jansson
62aa2c583a
provider/aws: New resource codepipeline ( #11814 )
...
* provider/aws: New resource codepipeline
* Vendor aws/codepipeline
* Add tests
* Add docs
* Bump codepipeline to v1.6.25
* Adjustments based on feedback
* Force new resource on ID change
* Improve tests
* Switch update to read
Since we don't require a second pass, only do a read.
* Skip tests if GITHUB_TOKEN is not set
2017-02-22 19:31:24 +02:00
Joscha Feth
0769230a62
docs: remove ambiguousity regarding s3_key
2017-02-22 14:40:31 +11:00
Cameron Wood
7c122604a0
provider/aws: data_aws_sns_topic ( #11752 )
...
* Initial commit of provider/aws: data_aws_sns_topic
* Pull-request fixes
2017-02-21 17:47:48 +02:00
Jake Champlin
85fdca8cbb
Merge pull request #11940 from bodgit/log_destination
...
Add support for Amazon CloudWatch Logs PutDestination/PutDestinationPolicy
2017-02-21 08:50:03 -05:00
stack72
ee9bcadbb9
Merge branch 'redshift-cluster-OwnerAccount' of https://github.com/jklukas/terraform into jklukas-redshift-cluster-OwnerAccount
2017-02-20 19:13:12 +02:00
George Christou
61277c0dbd
website/docs: Run `terraform fmt` on code examples ( #12075 )
...
* docs/vsphere: Fix code block
* docs: Convert `...` to `# ...` to allow `terraform fmt`ing
* docs: Trim trailing whitespace
* docs: First-pass run of `terraform fmt` on code examples
2017-02-19 00:48:50 +02:00
Justin Cardinal
1196114433
Fixes content errors for <h1> and intro text on aws_db_instance data source page ( #12080 )
2017-02-18 22:19:27 +02:00
Jeff Klukas
305eaf6968
Add owner_account option to aws_redshift_cluster
2017-02-17 16:40:55 -05:00
David Harris
2ab6fcc16b
provider/aws: Elastic Beanstalk Application Version ( #5770 )
...
* Added new resource aws_elastic_beanstalk_application_version.
* Changing bucket and key to required.
* Update to use d.Id() directly in DescribeApplicationVersions.
* Checking err to make sure that the application version is successfully deleted.
* Update `version_label` to `Computed: true`.
* provider/aws: Updating to python solution stack
* provider/aws: Beanstalk App Version delete source
The Elastic Beanstalk API call to delete `application_version` resource
should not delete the s3 bundle, as this object is managed by another
Terraform resource
* provider/aws: Update application version docs
* Fix application version test
* Add `version_label` update test
Adds test that fails after rebasing branch onto v0.8.x. `version_label`
changes do not update the `aws_elastic_beanstalk_environment` resource.
* `version_label` changes to update environment
* Prevent unintended delete of `application_version`
Prevents an `application_version` used by multiple environments from
being deleted.
* Add `force_delete` attribute
* Update documentation
2017-02-17 17:54:07 +02:00
Anthony Stanton
38eb0067d5
Fix doc formatting ( #12034 )
2017-02-17 16:44:51 +02:00
Rickard von Essen
1bb3f7f37a
aws/codebuild: Fixed documentation about Optional vs. Required attributes ( #12039 )
2017-02-17 16:43:58 +02:00
Vlad Ungureanu
954d53177d
Fix typo in s3_bucket resource
2017-02-16 18:53:59 +00:00
Paul Stack
8df5fcd0bd
provider/aws: Add default_cooldown to the autoscaling_group docs ( #11957 )
...
Fixes : #11947
2017-02-15 10:46:17 +00:00
Matt Dainty
3939a7220d
Add import functionality
2017-02-14 18:09:48 +00:00
Matt Dainty
a08fbcbadb
Add documentation
2017-02-14 16:16:22 +00:00
Robert Kulagowski
6254374827
Update ebs_volume.html.md ( #11918 )
...
Missing "sc1" volume type.
2017-02-13 19:52:57 +00:00
Jake Champlin
a5224d4220
Merge pull request #11911 from jakepusateri/patch-1
...
Fix documentation parameter to be "lambda_arn"
2017-02-13 14:51:52 -05:00
Paul Stack
eb5bcd9b6b
provider/aws: Enable final snapshots for aws_rds_cluster by default ( #11694 )
...
We now enable the final_snapshot of aws_rds_cluster by default. This is
a continuation of the work in #11668
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSRDSCluster_takeFinalSnapshot'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/02/04 13:19:52 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSRDSCluster_takeFinalSnapshot -timeout 120m
=== RUN TestAccAWSRDSCluster_takeFinalSnapshot
--- PASS: TestAccAWSRDSCluster_takeFinalSnapshot (141.59s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 141.609s
```
2017-02-13 19:29:31 +00:00
Jake Pusateri
c6c917dac5
Fix documentation parameter to be "lambda_arn"
2017-02-13 10:53:21 -08:00
Kit Ewbank
03af9fa42d
Add S3 bucket object tag support. ( #11344 )
2017-02-13 17:27:13 +00:00
Kit Ewbank
64fda44b00
Add 'aws_vpn_gateway' data source. ( #11886 )
2017-02-13 16:24:55 +00:00
Radek Simko
c6b21d853a
Merge pull request #5850 from TimeIncOSS/f-aws-config
...
provider/aws: Add support for AWSConfig service
2017-02-13 15:07:15 +00:00
Radek Simko
f2af02eb59
provider/aws: Add aws_config_delivery_channel
2017-02-13 14:01:35 +00:00
Radek Simko
a2b63f92c0
provider/aws: Add aws_config_configuration_recorder_status
2017-02-13 14:01:34 +00:00
Radek Simko
f5220ab884
provider/aws: Add aws_config_configuration_recorder
2017-02-13 14:01:32 +00:00
Radek Simko
1fdd52ea20
provider/aws: Add aws_config_config_rule
2017-02-13 14:01:30 +00:00
Paul Stack
8985a8ce1b
provider/aws: Update aws_lambda_permission documentation ( #11902 )
...
Fixes : #11870
2017-02-13 12:25:40 +00:00
Paul Stack
06aaa44a80
provider/aws: data_aws_db_instance resource ( #11717 )
2017-02-10 14:58:31 +00:00
Paul Stack
a306a6d780
provider/aws: Support import of aws_opsworks_instance ( #11783 )
...
Fixes : #11180
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSOpsworksInstance'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/02/08 15:01:08 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSOpsworksInstance -timeout 120m
=== RUN TestAccAWSOpsworksInstance_importBasic
--- PASS: TestAccAWSOpsworksInstance_importBasic (84.47s)
=== RUN TestAccAWSOpsworksInstance
--- PASS: TestAccAWSOpsworksInstance (113.09s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 197.583s
```
2017-02-10 14:53:50 +00:00
Clint
25d6507a7a
Merge pull request #11505 from ewbankkit/aws_vpc_peering_connection_accepter-resource
...
provider/aws: Add 'aws_vpc_peering_connection_accepter' resource
2017-02-09 16:30:51 -06:00
Paul Stack
7310b26896
provider/aws: Make aws_dms_endpoint database_name optional ( #11792 )
...
Not required for MySQL
Fixes : #11791
2017-02-09 11:43:14 +00:00
Jake Champlin
30cd37d8cc
Merge pull request #11810 from f440/fix-broken-document
...
Fix invalid markdown syntax
2017-02-08 22:04:39 -05:00
f440
f597442c87
Fix invalid markdown syntax
2017-02-09 11:49:49 +09:00
Kevin Burke
5bd8fab828
website: remove stray backticks ( #11807 )
2017-02-08 18:01:14 -08:00
Radek Simko
c25579a6f8
provider/aws: Add aws_elasticsearch_domain_policy ( #8648 )
2017-02-08 13:20:57 +00:00
Paul Stack
15251000b4
provider/aws: Addition of the documentation for the codebuild_project ( #11774 )
...
resource
2017-02-08 12:50:37 +00:00
Liam Bennett
d760f2102a
Latest updates to aws_ssm_document resource. ( #11671 )
...
A parameter `document_type` and a few more attributes returned based
upon the new API.
2017-02-08 12:45:38 +00:00
Kevin Burke
cb9102d550
website: describe API Gateway ARN's ( #11762 )
...
I lost a few hours figuring out the right way to describe an ARN for an API
Gateway resource. Specifically I translated the example poorly since I didn't
realize I had to append the path onto the end of the ARN.
Adds two links to an Amazon documentation page describing the format for API
Gateway ARN's. Adds an additional path component to the ARN example so you can
see you need to specify paths.
2017-02-08 11:29:55 +00:00
James Nugent
5bbed52e19
Merge pull request #11697 from jamtur01/patch-16
...
Minor fixes to AWS ASG data source docs
2017-02-04 17:06:14 +01:00
James Turnbull
f8f33f71fe
Minor grammar fixes to AWS Instance data source
...
Minor grammar fixes to AWS Instance data source.
2017-02-04 11:00:46 -05:00
James Turnbull
3dfd9808d0
Minor fixes
...
Some minor fixes to make this data source's function clearer.
2017-02-04 10:47:25 -05:00