Commit 32c911a3 by Feanil Patel

Fix cache references and correct subnet names.

parent a1785d51
...@@ -5194,13 +5194,13 @@ ...@@ -5194,13 +5194,13 @@
"Type" : "AWS::ElastiCache::SubnetGroup", "Type" : "AWS::ElastiCache::SubnetGroup",
"Properties" : { "Properties" : {
"Description" : "Cache Subnet Group", "Description" : "Cache Subnet Group",
"SubnetIds" : [ { "Ref" : "CacheSubnet01" }, { "Ref" : "CacheSubnet02" } ] "SubnetIds" : [ { "Ref" : "Cache01" }, { "Ref" : "Cache02" } ]
} }
}, },
"CacheCluster" : { "CacheCluster" : {
"Type": "AWS::ElastiCache::CacheCluster", "Type": "AWS::ElastiCache::CacheCluster",
"Properties": { "Properties": {
"NumCacheNodes" : { "Ref" : "NumberOfCacheNodes" } "NumCacheNodes" : { "Ref" : "NumberOfCacheNodes" },
"CacheNodeType" : { "Ref" : "CacheNodeType" }, "CacheNodeType" : { "Ref" : "CacheNodeType" },
"Engine" : "memcached", "Engine" : "memcached",
"EngineVersion": "1.4.5", "EngineVersion": "1.4.5",
...@@ -5212,9 +5212,9 @@ ...@@ -5212,9 +5212,9 @@
] ]
}, },
"CacheParameterGroupName": "default.memcached1.4", "CacheParameterGroupName": "default.memcached1.4",
"AutoMinorVersionUpgrade": true "AutoMinorVersionUpgrade": true,
"CacheSubnetGroupName" : { "Ref" : "CacheSubnetGroup" }, "CacheSubnetGroupName" : { "Ref" : "CacheSubnetGroup" },
"VpcSecurityGroupIds" : [ { "Ref" : "CacheSecurityGroup" } ], "VpcSecurityGroupIds" : [ { "Ref" : "CacheSecurityGroup" } ]
} }
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment