Sarah Zelechoski
3c63c04c11
Allow custom Compute Engine service account
2016-08-23 17:04:13 -04:00
Paul Stack
f22564c6c8
docs/aws: Documentation Update for `aws_db_option_group` ( #8424 )
...
Remove `apply_immediately` from the example and add a short note that we
apply_immediately by default
2016-08-23 20:02:22 +01:00
Radek Simko
070942df0f
provider/aws: Add support for ECS svc - LB target group ( #8190 )
2016-08-23 11:19:43 -05:00
Joe Topjian
c30398ed90
Merge pull request #8405 from jtopjian/openstack-allowedadresspairs-docs-tests
...
provider/openstack: docs and tests for allowed_address_pairs
2016-08-23 08:16:17 -06:00
Adam Dehnel
6f3fd1faa0
Added example of how the Option settings works ( #8413 )
...
It took me some googling to find this and thought it would be good to have an example of how that structure is meant to be right in the docs.
2016-08-23 14:47:10 +01:00
Paul Stack
2f936eaad4
provider/aws: Add support for `network_mode` to `aws_ecs_task_definition` ( #8391 )
...
* provider/aws: Add support for `network_mode` to
`aws_ecs_task_definition`
Fixes #8281
```
```
make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSEcsTaskDefinition_'
==> Checking that code complies with gofmt requirements...
/Users/stacko/Code/go/bin/stringer
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/08/22 18:12:20 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSEcsTaskDefinition_ -timeout 120m
=== RUN TestAccAWSEcsTaskDefinition_basic
--- PASS: TestAccAWSEcsTaskDefinition_basic (29.02s)
=== RUN TestAccAWSEcsTaskDefinition_withScratchVolume
--- PASS: TestAccAWSEcsTaskDefinition_withScratchVolume (16.75s)
=== RUN TestAccAWSEcsTaskDefinition_withEcsService
--- PASS: TestAccAWSEcsTaskDefinition_withEcsService (147.77s)
=== RUN TestAccAWSEcsTaskDefinition_withTaskRoleArn
--- PASS: TestAccAWSEcsTaskDefinition_withTaskRoleArn (19.49s)
=== RUN TestAccAWSEcsTaskDefinition_withNetworkMode
--- PASS: TestAccAWSEcsTaskDefinition_withNetworkMode (19.52s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 232.588
* Update resource_aws_ecs_task_definition.go
* Update ecs_task_definition.html.markdown
2016-08-23 11:27:45 +01:00
Paul Stack
83dc4d0535
provider/aws: Add Primary Endpoint Address output for ( #8385 )
...
`aws_elasticache_replication_group`
Fixes #8377
Now we can output the endpoint of the primary
```
resource "aws_elasticache_replication_group" "bar" {
replication_group_id = "tf-11111"
replication_group_description = "test description"
node_type = "cache.m1.small"
number_cache_clusters = 2
port = 6379
parameter_group_name = "default.redis2.8"
apply_immediately = true
}
output "primary_endpoint_address" {
value = "${aws_elasticache_replication_group.bar.primary_endpoint_address}"
}
```
This gives us:
```
% terraform apply
...................
aws_elasticache_replication_group.bar: Creation complete
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
Outputs:
primary_endpoint_address = tf-11111.d5jx4z.ng.0001.use1.cache.amazonaws.com
```
This was the addition of a computed field only so the basic test still works as expected:
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSElasticacheReplicationGroup_basic' ✹
==> Checking that code complies with gofmt requirements...
/Users/stacko/Code/go/bin/stringer
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/08/22 17:11:13 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSElasticacheReplicationGroup_basic -timeout 120m
=== RUN TestAccAWSElasticacheReplicationGroup_basic
--- PASS: TestAccAWSElasticacheReplicationGroup_basic (741.71s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 741.735s
```
2016-08-23 11:13:26 +01:00
Joe Topjian
a41ae4b9ac
provider/openstack: docs and tests for allowed_address_pairs
2016-08-23 02:13:37 +00:00
Martin Atkins
38289ddbd5
Merge #8353 : New resources for custom domains on AWS API Gateway
2016-08-22 15:44:52 -07:00
Martin Atkins
c4255f195b
website: Docs for AWS API Gateway domain name and base path mapping
2016-08-22 15:36:20 -07:00
Mitchell Hashimoto
d32487c335
website: remove numeric suffixes, they haven't worked in real long time
2016-08-22 14:43:58 -07:00
Brad Sickles
35d4d4bdbf
Fixing archive file website docs. ( #8373 )
2016-08-22 13:27:43 +01:00
Mitchell Hashimoto
041094fb85
Merge pull request #8352 from ajlanghorn/add-whitespace-note
...
Add note to use Server-Defined-Cipher-Order
2016-08-22 02:11:11 -04:00
James Nugent
2070fa44c3
provider/datadog: Fix docs sidebar
2016-08-22 06:01:50 +02:00
James Nugent
3264f56860
provider/datadog: Document import support
2016-08-22 06:00:05 +02:00
James Nugent
11acfca54e
docs: Note envvars for Datadog configuration
2016-08-22 05:43:04 +02:00
James Nugent
296071f259
Merge pull request #7964 from szollo/master
...
Update AMI ID on documentation
2016-08-22 05:39:11 +02:00
James Nugent
dd5651ef23
Merge pull request #8357 from hashicorp/sethvargo/docs
...
Add more output grammar and CLI examples
2016-08-22 05:34:17 +02:00
James Nugent
61f885aa86
website: Add archive provider to sidebar and css
2016-08-22 05:30:37 +02:00
James Nugent
74315d6d1b
provider/archive: Fix doc sidebar title
2016-08-22 05:23:08 +02:00
Seth Vargo
988b0325a1
Add more output grammar and CLI examples
2016-08-21 15:17:31 -04:00
Andrew Langhorn
8bd2a249ce
Add note to use Server-Defined-Cipher-Order
...
The Terraform documentation, rather correctly, refers to a list of options
you can pass to an Elastic Load Balancer from the AWS documentation. All but
one of these options works; 'Server Order Preference' doesn't work, because
the API refers to it as 'Server-Defined-Cipher-Order'.
Add a note to explain this, at least as a temporary solution.
Fixes #8340 .
2016-08-21 14:21:02 +01:00
f440
e37dbefd90
Fix file extension ( #8343 )
2016-08-20 12:03:20 +01:00
kyhavlov
0b165164c4
docs: Fix exported attribute name in docker_registry_image
2016-08-19 20:35:00 -04:00
clint
55ba6ebd3d
v0.7.1
2016-08-19 19:58:17 +00:00
Clint
771155cea5
provider/aws: Add support for TargetGroups to AutoScaling Groups ( #8327 )
...
* start of ALB support. Waiting for ALB top level to move forward
* initial test
* cleanup
* small docs
* beef up test
2016-08-19 14:07:53 -05:00
James Nugent
41d8a45ae9
Merge pull request #8321 from hashicorp/f-aws-alb-attachment
...
provider/aws: Add aws_alb_target_group_attachment
2016-08-19 16:26:04 +01:00
Anastas Dancha
bd25d77615
health_check's target explained
2016-08-19 11:12:56 -04:00
James Nugent
e4ce708bf9
provider/aws: Add aws_alb_target_group_attachment
2016-08-19 16:12:19 +01:00
James Nugent
b5e0f2e347
Merge pull request #8318 from hashicorp/f-aws-application-lb-rules
...
provider/aws: Add aws_alb_listener_rule resource
2016-08-19 13:24:02 +01:00
James Nugent
e2445497ab
Merge pull request #8319 from hashicorp/aws-route53-cloudwatch-metric
...
provider/aws: Implement support for CloudWatch Metric in `aws_route53_health_check`
2016-08-19 13:09:33 +01:00
James Nugent
417b98bafb
provider/aws: Add aws_alb_listener_rule resource
...
This commit adds the aws_alb_listener_rule resource along with
acceptance tests and documentation.
2016-08-19 13:07:20 +01:00
stack72
da5abccfd9
provider/aws: Implement support for CloudWatch Metric in
...
`aws_route53_health_check`
fixes #7830
```
% make testacc TEST=./builtin/providers/aws
% TESTARGS='-run=TestAccAWSRoute53HealthCheck_' ✚
==> Checking that code complies with gofmt requirements...
/Users/stacko/Code/go/bin/stringer
go generate $(go list ./... | grep -v /terraform/vendor/)
2016/08/19 12:58:00 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v
-run=TestAccAWSRoute53HealthCheck_ -timeout 120m
=== RUN TestAccAWSRoute53HealthCheck_importBasic
--- PASS: TestAccAWSRoute53HealthCheck_importBasic (20.03s)
=== RUN TestAccAWSRoute53HealthCheck_basic
--- PASS: TestAccAWSRoute53HealthCheck_basic (31.42s)
=== RUN TestAccAWSRoute53HealthCheck_withChildHealthChecks
--- PASS: TestAccAWSRoute53HealthCheck_withChildHealthChecks (26.88s)
=== RUN TestAccAWSRoute53HealthCheck_IpConfig
--- PASS: TestAccAWSRoute53HealthCheck_IpConfig (30.27s)
=== RUN TestAccAWSRoute53HealthCheck_CloudWatchAlarmCheck
--- PASS: TestAccAWSRoute53HealthCheck_CloudWatchAlarmCheck (26.08s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 134.692s
```
2016-08-19 13:00:45 +01:00
Krzysztof Wilczynski
5df0b08e86
Add ability to set peering options in aws_vpc_peering_connection. ( #8310 )
...
This commit adds two optional blocks called "accepter" and "requester" to the
resource allowing for setting desired VPC Peering Connection options for VPCs
that participate in the VPC peering.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
2016-08-19 11:19:49 +01:00
Radek Simko
73f0c47915
aws/docs: Add example of aws_alb_target_group ( #8311 )
2016-08-19 09:13:39 +01:00
Radek Simko
4c47e0dc37
docs/aws: Fix example of aws_redshift_service_account ( #8313 )
2016-08-19 09:09:48 +01:00
kyhavlov
dd33357fbb
docs: Fix example for docker_registry_image ( #8308 )
2016-08-19 07:40:50 +01:00
Mitchell Hashimoto
9d41100c13
Merge pull request #8267 from ChrisMcKenzie/patch-1
...
Document credentials variable and env var for gcs remote state
2016-08-18 23:34:45 -04:00
Mitchell Hashimoto
e529df1255
Merge pull request #8307 from cblecker/google/acctest-image-update
...
provider/google: Update Acceptance Tests to use Debian 8
2016-08-18 23:22:01 -04:00
Christoph Blecker
20ca61a88a
Update docs to use GCP Image Families
2016-08-18 17:23:15 -07:00
James Nugent
76910c15d6
docs: Remove output from `terraform_remote_state`
...
Fixes #8296 .
2016-08-19 00:50:43 +01:00
Martin Atkins
0007346a33
Merge: #8300 : Correct spelling of "certificate" in tls provider docs
2016-08-18 13:46:38 -07:00
Jarrod Jackson
98cc77c57a
Correct spelling of the word certificate.
2016-08-18 14:38:00 -06:00
James Nugent
56907d9931
Merge pull request #8268 from hashicorp/f-aws-application-lb-listener
...
provider/aws: Add aws_alb_listener resource
2016-08-18 21:18:35 +01:00
Paul Stack
09de4f82ce
provider/aws: `aws_elasticache_replication_groups` only support Redis ( #8297 )
...
* provider/aws: `aws_elasticache_replication_groups` only support Redis
therefore, making our users add `engine = redis` to the configuration
felt wasted
* Update resource_aws_elasticache_replication_group.go
* Update resource_aws_elasticache_replication_group.go
* Update resource_aws_elasticache_replication_group.go
* Update resource_aws_elasticache_replication_group_test.go
* Update resource_aws_elasticache_replication_group_test.go
* Update resource_aws_elasticache_replication_group.go
2016-08-18 20:30:12 +01:00
Paul Stack
51f216306f
provider/aws: Implement the `aws_elasticache_replication_group` resource ( #8275 )
2016-08-18 19:42:29 +01:00
Dan Norris
c61f04c89d
docs/remote_state: Update docs to use data instead of resource ( #8293 )
2016-08-18 19:38:34 +01:00
James Nugent
e38d41b7a7
provider/aws: Add `arn` fields to ALB resources
...
This commit adds an `arn` field to `aws_alb` and `aws_alb_target_group`
resources, in order to present a more coherant user experience to people
using resource variables in fields suffixed "arn".
2016-08-18 18:54:39 +01:00
James Nugent
59f66eca02
provider/aws: Add aws_alb_listener resource
...
This commit adds the `aws_alb_listener` resource and associated
acceptance tests and documentation.
2016-08-18 18:49:44 +01:00
Paul Stack
ff0d9aff76
docs/aws: Update documentation example to remove \ from bucket prefix ( #8289 )
2016-08-18 18:44:19 +01:00