Paul Stack
e28f9c11bf
provider/aws: aws_elasticache_cluster data source ( #14895 )
...
* provider/aws: Add data source for aws_elasticache_cluster
Fixes : #11445
* provider/aws: Add acceptance tests for aws_elasticache_cluster data source
* provider/aws: Add documentation for the aws_elasticache_cluster datasource
2017-05-31 16:25:27 +03:00
Kit Ewbank
8e130b15e4
Add 'aws_kms_ciphertext' data source. ( #14691 )
2017-05-22 16:46:18 +03:00
Radek Simko
740c92fc67
provider/aws: Support filtering in ASG data source ( #14501 )
2017-05-18 17:40:49 +02:00
Paul Stack
2276e981ee
provider/aws: Add new aws_db_snapshot data source ( #10291 )
...
* provider/aws: Add ability to create AWS DB Snapshots
* provider/aws: Add AWS DB Snapshot resource acceptance tests
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSDBSnapshot_
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/11/22 18:24:05 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSDBSnapshot_ -timeout 120m
=== RUN TestAccAWSDBSnapshot_basic
--- PASS: TestAccAWSDBSnapshot_basic (892.75s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 892.773s
```
* provider/aws: Add new aws_db_snapshot data source
* docs/aws: Add documentation for aws_db_snapshot resource
* provider/aws: Add datasource for aws_db_snapshot acceptance tests
```
% make testacc TEST=./builtin/providers/aws
% TESTARGS='-run=TestAccAWSDbSnapshotDataSource_' 2 ↵ ✭
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/11/22 18:55:08 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v
-run=TestAccAWSDbSnapshotDataSource_ -timeout 120m
=== RUN TestAccAWSDbSnapshotDataSource_basic
--- PASS: TestAccAWSDbSnapshotDataSource_basic (966.68s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws966.699s
```
* docs/aws: Adding documentation for aws_db_snapshot datasource
2017-05-15 20:17:26 +03:00
Ian Gibbs
a4784e4d2a
Document the data attribute that allows you to get at an instance's IPv6 address(es)
2017-05-14 21:42:18 +01:00
Jake Champlin
06b5fbf9ef
add docs
2017-05-05 13:58:15 -04:00
Thomas Poindessous
87055fa47a
Added missing datasources and resources in panel list ( #14235 )
...
Corrected some HTML errors
2017-05-05 15:40:53 +03:00
Tom Elliff
64cd64d061
Document that data sources support meta parameters such as count ( #14143 )
...
Also fix the bad interpolation in the subnet_ids example.
2017-05-02 15:05:50 +01:00
stack72
be002d9345
provider/aws: Add documentation for the EFS File System DataSource
2017-04-29 11:38:10 +12:00
Joshua Spence
d721ff6d66
provider/aws: Sort AMI and snapshot IDs ( #13866 )
...
As a follow up to #13844 , this pull request sorts the AMIs and snapshots returned from the aws_ami_ids and aws_ebs_snapshot_ids data sources, respectively.
2017-04-25 15:11:21 -07:00
Tom Elliff
bc46b1cbf9
Allow filtering of aws_subnet_ids by tags
...
This is the minimal amount of work needed to be able to create a list of a subset of subnet IDs in a VPC, allowing people to loop through them easily when creating EC2 instances or provide a list straight to an ELB.
2017-04-25 14:46:51 +01:00
Paul Stack
72a14ef2bb
provider/aws: Add IPv6 outputs to aws_subnet datasource ( #13841 )
...
Fixes : #13595
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccDataSourceAwsSubnet'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/04/21 13:52:43 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccDataSourceAwsSubnet -timeout 120m
=== RUN TestAccDataSourceAwsSubnetIDs
--- PASS: TestAccDataSourceAwsSubnetIDs (81.05s)
=== RUN TestAccDataSourceAwsSubnet
--- PASS: TestAccDataSourceAwsSubnet (57.48s)
=== RUN TestAccDataSourceAwsSubnetIpv6ByIpv6Filter
--- PASS: TestAccDataSourceAwsSubnetIpv6ByIpv6Filter (82.63s)
=== RUN TestAccDataSourceAwsSubnetIpv6ByIpv6CidrBlock
--- PASS: TestAccDataSourceAwsSubnetIpv6ByIpv6CidrBlock (82.43s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 303.625s
```
2017-04-21 16:54:55 +03:00
Joshua Spence
2aac8fb8fc
Add `aws_ami_ids` and `aws_ebs_snapshot_ids` resources ( #13844 )
...
Fixes #12081 . Adds new `aws_ami_ids` and `aws_ebs_snapshot_ids` resources.
2017-04-21 16:37:26 +03:00
Paul Stack
0aad5f2c43
provider/aws: Add replica_source_db to the aws_db_instance datasource ( #13842 )
...
Fixes : #13471
2017-04-21 14:23:48 +03:00
Chris Broglie
3f0934bd4e
provider/aws: Add aws_kinesis_stream data source ( #13562 )
...
This fixes #13521
2017-04-20 22:13:39 +03:00
KOJIMA Kazunori
47d255f943
provider/aws: Add aws_kms_alias datasource ( #13669 )
2017-04-18 15:29:14 +03:00
Max Riveiro
137fcfb5de
Massively add HCL source tag in docs Markdown files
...
Signed-off-by: Max Riveiro <kavu13@gmail.com>
2017-04-17 13:17:54 +03:00
tombuildsstuff
336a37bea3
Quoting the title for the iam_role data source
...
Fixes #13613
2017-04-13 10:32:43 +01:00
Jake Champlin
40fc19d812
provider/aws: Update instance documentation
...
Updates instance documentation.
Fixes : #13514
2017-04-11 09:57:15 -04:00
Seth Vargo
4fb72b7816
Fix bug during build
2017-04-07 11:57:59 -04:00
Clint
a3ae38d1bb
docs: Update AWS Data Source docs to have HCL formatted examples ( #13467 )
...
* docs: update AWS examples. Disntinguish between alb and alb listener datasource
* more hcl highlighting
* more hcl
* fix missing end quote in docs
* docs: finish updates to AWS data source highlights
Also updates layout to distinguish some resources
2017-04-07 10:54:28 -05:00
Seth Vargo
a2ee36d9ea
Replace // with #
2017-04-06 14:09:10 -04:00
Radek Simko
0dddb48239
provider/aws: Improve logging & docs for caller_identity ( #13316 )
2017-04-04 15:41:30 +01:00
Martin Atkins
638038428a
Merge #13188 : aws_subnet_ids data source
2017-04-03 15:17:15 -07:00
Jake Champlin
5cce6b9966
Merge pull request #13092 from hashicorp/f-update-sts-caller-identity
...
provider/aws: Update calling_identity
2017-04-03 14:29:28 -04:00
Jake Champlin
83afa7bf88
add bullets to website docs
2017-04-03 14:15:01 -04:00
Colin Wood
1ce0776c51
Add documentation about aws_subnet_ids
2017-03-31 11:21:44 -07:00
mathematician
fc4cec3c40
Create AWS IAM Role data source, acceptance tests, documentation, and website link
2017-03-30 11:09:11 -05:00
Paul Stack
78768e00f2
provider/aws: Add support to set iam_role_arn on cloudformation Stack ( #12547 )
...
Fixes : #11266
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSCloudFormation_basic'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/03/09 01:39:16 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSCloudFormation_basic -timeout 120m
=== RUN TestAccAWSCloudFormation_basic
--- PASS: TestAccAWSCloudFormation_basic (89.38s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 89.416s
```
2017-03-28 15:54:28 +03:00
Paul Stack
43b74cfe79
provider/aws: Support Import of iam_server_certificate ( #13065 )
...
* Adding import to resource_aws_iam_server_certificate.
* provider/aws: Update tests for import of aws_iam_server_certificate
Builds upon the work of @mrcopper in #12940
Resource:
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSIAMServerCertificate_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/03/25 00:08:48 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSIAMServerCertificate_ -timeout 120m
=== RUN TestAccAWSIAMServerCertificate_importBasic
--- PASS: TestAccAWSIAMServerCertificate_importBasic (22.81s)
=== RUN TestAccAWSIAMServerCertificate_basic
--- PASS: TestAccAWSIAMServerCertificate_basic (19.68s)
=== RUN TestAccAWSIAMServerCertificate_name_prefix
--- PASS: TestAccAWSIAMServerCertificate_name_prefix (19.88s)
=== RUN TestAccAWSIAMServerCertificate_disappears
--- PASS: TestAccAWSIAMServerCertificate_disappears (13.94s)
=== RUN TestAccAWSIAMServerCertificate_file
--- PASS: TestAccAWSIAMServerCertificate_file (32.67s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 109.062s
```
Data Source:
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSDataSourceIAMServerCertificate_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/03/25 13:07:10 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSDataSourceIAMServerCertificate_ -timeout 120m
=== RUN TestAccAWSDataSourceIAMServerCertificate_basic
--- PASS: TestAccAWSDataSourceIAMServerCertificate_basic (43.86s)
=== RUN TestAccAWSDataSourceIAMServerCertificate_matchNamePrefix
--- PASS: TestAccAWSDataSourceIAMServerCertificate_matchNamePrefix (2.68s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 46.569s
```
2017-03-27 18:49:11 +03:00
Jake Champlin
e97900aef2
provider/aws: Update calling_identity
...
Updates `aws_caller_identity` data source to actually include the correct attributes from the `GetCallerIdentity` API function.
```
$ make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSCallerIdentity_basic'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/03/27 09:26:13 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSCallerIdentity_basic -timeout 120m
=== RUN TestAccAWSCallerIdentity_basic
--- PASS: TestAccAWSCallerIdentity_basic (12.74s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 12.767s
```
2017-03-27 09:32:31 -04:00
Paul Stack
7311ba22ea
provider/aws: Add IPv6 Support to aws_route_table ( #12640 )
...
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSRouteTable_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/03/13 10:11:09 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSRouteTable_ -timeout 120m
=== RUN TestAccAWSRouteTable_importBasic
--- PASS: TestAccAWSRouteTable_importBasic (63.14s)
=== RUN TestAccAWSRouteTable_complex
--- PASS: TestAccAWSRouteTable_complex (241.57s)
=== RUN TestAccAWSRouteTable_basic
--- PASS: TestAccAWSRouteTable_basic (91.26s)
=== RUN TestAccAWSRouteTable_instance
--- PASS: TestAccAWSRouteTable_instance (158.18s)
=== RUN TestAccAWSRouteTable_ipv6
--- PASS: TestAccAWSRouteTable_ipv6 (48.99s)
=== RUN TestAccAWSRouteTable_tags
--- PASS: TestAccAWSRouteTable_tags (71.68s)
=== RUN TestAccAWSRouteTable_vpcPeering
--- PASS: TestAccAWSRouteTable_vpcPeering (58.33s)
=== RUN TestAccAWSRouteTable_vgwRoutePropagation
--- PASS: TestAccAWSRouteTable_vgwRoutePropagation (59.64s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 780.400s
```
2017-03-14 12:38:25 +02:00
David Wittman
e15ba7e595
provider/aws: Document usage for aws_vpn_gateway ( #12657 )
2017-03-13 21:31:46 +02:00
f440
dc842caee0
Fix invalid yaml syntax ( #12653 )
2017-03-13 16:52:22 +00:00
Lucas Vasconcelos Santana
1a957a0481
provider/aws: Add address, port, hosted_zone_id and endpoint for aws_db_instance datasource ( #12623 )
...
* Add address, port, hosted_zone_id and endpoint information to datasource aws_db_instance
* Update the docs
2017-03-13 10:31:24 +02: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
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
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
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
Anthony Stanton
38eb0067d5
Fix doc formatting ( #12034 )
2017-02-17 16:44:51 +02: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
Paul Stack
06aaa44a80
provider/aws: data_aws_db_instance resource ( #11717 )
2017-02-10 14:58:31 +00:00
f440
f597442c87
Fix invalid markdown syntax
2017-02-09 11:49:49 +09: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
ValFadeev
cb8d85fc50
provider/aws: New DataSource: aws_partition ( #11675 )
2017-02-04 11:54:45 +00:00
Clint
c7ccf0cbe6
provider/aws: Change the format of kms_secret datasource to be a warning note
2017-02-02 16:13:40 +00:00