provider/aws: `aws_elasticache_cluster` acceptance test for

`cluster_address`
This commit is contained in:
stack72 2016-09-20 17:29:57 +01:00
parent 10cddc8153
commit 87f632cb92
No known key found for this signature in database
GPG Key ID: 8619A619B085CB16
2 changed files with 2 additions and 3 deletions

View File

@ -27,6 +27,8 @@ func TestAccAWSElasticacheCluster_basic(t *testing.T) {
testAccCheckAWSElasticacheClusterExists("aws_elasticache_cluster.bar", &ec),
resource.TestCheckResourceAttr(
"aws_elasticache_cluster.bar", "cache_nodes.0.id", "0001"),
resource.TestCheckResourceAttrSet("aws_elasticache_cluster.bar", "configuration_endpoint"),
resource.TestCheckResourceAttrSet("aws_elasticache_cluster.bar", "cluster_address"),
),
},
},

View File

@ -2572,9 +2572,6 @@ type CacheCluster struct {
// node.
ConfigurationEndpoint *Endpoint `type:"structure"`
// The DNS name of the cache cluster without the port appended.
ClusterAddress *string `type:"string"`
// The name of the cache engine (memcached or redis) to be used for this cache
// cluster.
Engine *string `type:"string"`