Alexander Savchuk
804579f869
Correct some typos in ECS task def document ( #12576 )
2017-03-10 08:21:04 +00:00
Paul Stack
0b0a76a3d5
provider/aws: Add the IPV6 cidr block to the vpc datasource ( #12529 )
...
Fixes : #12526
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccDataSourceAwsVpc_ipv6Associated'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/03/08 17:42:13 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v
-run=TestAccDataSourceAwsVpc_ipv6Associated -timeout 120m
=== RUN TestAccDataSourceAwsVpc_ipv6Associated
--- PASS: TestAccDataSourceAwsVpc_ipv6Associated (71.33s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws71.366s
```
2017-03-08 21:08:37 +02:00
Clint
f6ac200aca
provider/aws: Rename 'timeout' to 'build_timeout' for Codebuild ( #12503 )
2017-03-08 09:29:54 -06:00
Yusuf
7f96b589c1
add "name" to exported attributes ( #12483 )
2017-03-07 15:57:15 +02:00
Clint
d2f728e6cd
provider/aws: Only send iops when creating io1 devices. Fix docs ( #12392 )
2017-03-07 14:44:39 +02:00
Maxime Bury
1da30ec0d7
Make sub-properties of step_adjustment clearer ( #12438 )
2017-03-04 20:27:03 +02:00
Guillaume Simard
842bff5af5
Updated list of available services ( #12409 )
...
http://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html#aws-ip-download
> Valid values: AMAZON | EC2 | CLOUDFRONT | ROUTE53 | ROUTE53_HEALTHCHECKS | S3
2017-03-03 21:14:10 +02:00
Clint
2fe5976aec
helper/schema: Add configurable Timeouts ( #12311 )
...
* helper/schema: Add custom Timeout block for resources
* refactor DefaultTimeout to suuport multiple types. Load meta in Refresh from Instance State
* update vpc but it probably wont last anyway
* refactor test into table test for more cases
* rename constant keys
* refactor configdecode
* remove VPC demo
* remove comments
* remove more comments
* refactor some
* rename timeKeys to timeoutKeys
* remove note
* documentation/resources: Document the Timeout block
* document timeouts
* have a test case that covers 'hours'
* restore a System default timeout of 20 minutes, instead of 0
* restore system default timeout of 20 minutes, refactor tests, add test method to handle system default
* rename timeout key constants
* test applying timeout to state
* refactor test
* Add resource Diff test
* clarify docs
* update to use constants
2017-03-02 11:07:49 -06:00
Paul Stack
c5da896d22
provider/aws: Add support for import of aws_elasticsearch_domain ( #12330 )
...
Fixes : #12180
2017-03-01 23:53:35 +00:00
Mitchell Hashimoto
a4c56b5056
website: clarify elb vs alb
2017-03-01 14:52:12 -08:00
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