clint shryock
3063fa9947
provider/aws: Update documentation example to meet validation
2017-05-10 09:00:14 -05:00
Matthew Frahry
1c98b17023
Merge pull request #14327 from hashicorp/b-opc-ssh-key
...
provider/opc: Fixes ssh key being truncated
2017-05-10 07:45:36 -06:00
Stephen Coe
c83ee17590
correction for capability values ( #14349 )
2017-05-10 14:44:13 +02:00
Radek Simko
08d59275e3
Update CHANGELOG.md
2017-05-10 14:42:40 +02:00
Radek Simko
6b4643fbdc
provider/aws: Increase timeouts for Route Table retries ( #14345 )
2017-05-10 14:41:49 +02:00
Paul Stack
15f4976743
Update CHANGELOG.md
2017-05-10 14:50:53 +03:00
Dana Hoffman
37911bcc99
provider/google: Handle all 404 checks in read functions via the new function
2017-05-10 14:50:19 +03:00
Evan Phoenix
1ff7fe5ebe
Use properly described error
2017-05-09 15:41:12 -07:00
Evan Phoenix
2171e2118f
Don't error out getting s3 object tags in govcloud
2017-05-09 15:39:58 -07:00
Radek Simko
a6a796708e
Update CHANGELOG.md
2017-05-09 20:46:44 +02:00
=
d481380a06
Update vendored opc sdk
2017-05-09 12:46:16 -06:00
Radek Simko
44a99e0ae5
core: Avoid crash on empty TypeSet blocks ( #14305 )
2017-05-09 20:45:53 +02:00
liz abinante!
35fc047b69
Merge pull request #14228 from hashicorp/liz/vagrant-cloud-migration-docs
...
website: copy vagrant cloud docs
2017-05-09 11:34:24 -07:00
Paul Stack
8f810cdee0
Update CHANGELOG.md
2017-05-09 20:38:03 +03:00
Paul Stack
c4aaddde1a
provider/aws: Update aws_elasticache_replication_group documentation
2017-05-09 20:37:28 +03:00
stack72
930a41b7c0
provider/aws: Slight design change to aws_elasticache_replication_group
...
We should error check up front on the use of num_cache_nodes and
cluster_mode. This allows us to write a test to make sure all works as
expected
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSElasticacheReplicationGroup_clusteringAndCacheNodesCausesError'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/05/09 19:04:56 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSElasticacheReplicationGroup_clusteringAndCacheNodesCausesError -timeout 120m
=== RUN TestAccAWSElasticacheReplicationGroup_clusteringAndCacheNodesCausesError
--- PASS: TestAccAWSElasticacheReplicationGroup_clusteringAndCacheNodesCausesError (40.58s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 40.603s
```
2017-05-09 20:37:28 +03:00
Derrick Petzold
55a4ce2838
Feature request: Support for ElastiCache Redis cluster mode #9419
...
Added support for provisioning a native redis cluster elasticache replication group.
A new TypeSet attribute `cluster_mode` has been added. It requires the following
fields:
- `replicas_per_node_group` - The number of replica nodes in each node group
- `num_node_groups` - The number of node groups for this Redis replication group
Notes:
- `automatic_failover_enabled` must be set to true.
- `number_cache_clusters` is now a optional and computed field. If `cluster_mode` is set
its value will be computed as:
```num_node_groups + num_node_groups * replicas_per_node_group```
Below is a sample config:
resource "aws_elasticache_replication_group" "bar" {
replication_group_id = "tf-redis-cluser"
replication_group_description = "test description"
node_type = "cache.t2.micro"
port = 6379
parameter_group_name = "default.redis3.2.cluster.on"
automatic_failover_enabled = true
cluster_mode {
replicas_per_node_group = 1
num_node_groups = 2
}
}
2017-05-09 20:37:28 +03:00
liz abinante
de3e6ad416
⚡ website: copy vagrant cloud docs
2017-05-09 10:24:56 -07:00
Paul Stack
8622925b34
Update CHANGELOG.md
2017-05-09 20:21:09 +03:00
Paul Stack
67bbad1cf0
provider/aws: Update the ignoring of AWS specific tags ( #14321 )
...
We were too greedy with the AWS specific tags ignore function - we
basically were ignoring anything starting with `aws` rather than just
using `aws:`
Fixes : #14308
Fixes : #14247
2017-05-09 20:19:33 +03:00
Jake Champlin
dddfcef556
Update CHANGELOG.md
2017-05-09 13:17:36 -04:00
Jake Champlin
770b861508
Merge pull request #14304 from paybyphone/zero-value-aws-lb-names
...
Allows zero-value ELB and ALB names
2017-05-09 13:16:41 -04:00
Jake Champlin
4677aca349
Merge pull request #14319 from hashicorp/f-update-partition-check
...
provider/aws: Use helper methods for checking partition
2017-05-09 12:30:07 -04:00
Jake Champlin
67ea7a3a08
reverse if statement
2017-05-09 12:19:50 -04:00
Jake Champlin
19e29c2944
provider/aws: Use helper methods for checking partition
2017-05-09 12:17:27 -04:00
Clint
88c2e29f91
provider/aws: Consolidate IAM Account Alias tests ( #14316 )
...
* provider/aws: combine aws alias tests
* tweaks
* fix up
* uncomment
2017-05-09 11:12:07 -05:00
Jake Champlin
8d91080af8
Update CHANGELOG.md
2017-05-09 12:11:14 -04:00
Jake Champlin
7b05d7f050
Merge pull request #12414 from jmcarp/govcloud-cloudwatchlogs-tags
...
Skip tag operations on cloudwatch logs in govcloud partition.
2017-05-09 12:10:09 -04:00
Paul Stack
e71a49cf35
Update CHANGELOG.md
2017-05-09 17:51:12 +03:00
Paul Stack
9dd4e5bcb0
provider/aws: Add support for targets to aws_ssm_association ( #14246 )
...
* provider/aws: Add support for targets to aws_ssm_association
Fixes : #13975
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSSSMAssociation_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/05/05 20:32:43 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSSSMAssociation_ -timeout 120m
=== RUN TestAccAWSSSMAssociation_basic
--- PASS: TestAccAWSSSMAssociation_basic (139.13s)
=== RUN TestAccAWSSSMAssociation_withTargets
--- PASS: TestAccAWSSSMAssociation_withTargets (33.19s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 172.343s
```
* Update ssm_association.html.markdown
2017-05-09 17:48:57 +03:00
Jake Champlin
3230217dc5
Update CHANGELOG.md
2017-05-09 10:01:47 -04:00
Jake Champlin
930832d5eb
Merge pull request #14271 from sbfaulkner/fix-data_dns_txt_record_set
...
Fix data dns txt record set
2017-05-09 10:01:09 -04:00
Paul Stack
c80aacc8d2
Update CHANGELOG.md
2017-05-09 13:10:45 +03:00
Dana Hoffman
1438eacdad
provider/google: better visibility for compute_region_backend_service ( #14301 )
2017-05-09 13:10:14 +03:00
Paul Stack
d4bb835b31
Update CHANGELOG.md
2017-05-09 13:08:34 +03:00
stack72
94150ea370
Merge branch 'joshuaspence-ses-arn'
2017-05-09 13:06:59 +03:00
stack72
d637885dc3
provider/aws: Removal of Optional from aws_ses_domain_identity arn param
...
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAwsSESDomainIdentity_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/05/09 13:05:15 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAwsSESDomainIdentity_ -timeout 120m
=== RUN TestAccAwsSESDomainIdentity_basic
--- PASS: TestAccAwsSESDomainIdentity_basic (23.53s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 23.545s
```
2017-05-09 13:06:11 +03:00
stack72
880071ded5
Merge branch 'ses-arn' of https://github.com/joshuaspence/terraform into joshuaspence-ses-arn
2017-05-09 13:04:27 +03:00
Daniel Schmidt
6a7e81d8ae
provider/aws: add devicefarm project resource
2017-05-09 09:48:44 +02:00
Daniel Schmidt
995121f9ce
provider/aws: add devicefarm configuration
2017-05-09 09:48:08 +02:00
Daniel Schmidt
742da65144
provider/aws: add devicefarm sdk
2017-05-09 09:35:41 +02:00
Joshua Spence
f488e385f2
Add `arn` attribute to `aws_ses_domain_identity` resource
2017-05-09 17:14:51 +10:00
Graham Davison
7ad0cdd8b0
Allows zero-value ELB and ALB names
2017-05-08 23:06:59 -07:00
Radek Simko
13e1a62319
Update CHANGELOG.md
2017-05-09 05:07:59 +02:00
Radek Simko
178488f4bd
provider/kubernetes: Add support for limit_range ( #14285 )
2017-05-09 05:07:17 +02:00
Martin Atkins
1b6a5af77b
Update CHANGELOG.md
2017-05-08 17:43:25 -07:00
Martin Atkins
a06e6c69d0
Update CHANGELOG.md
2017-05-08 17:42:28 -07:00
Dmitrii Korotovskii
ace0456d58
http provider and http request data source
2017-05-08 17:37:48 -07:00
Dana Hoffman
9a1c6d990f
Update CHANGELOG.md
2017-05-08 16:37:26 -07:00
emily
64c2e68de9
Add additional properties for google resource storage bucket object. ( #14259 )
2017-05-08 16:35:47 -07:00