Commit 32c911a3 by Feanil Patel

Fix cache references and correct subnet names.

parent a1785d51
......@@ -5194,13 +5194,13 @@
"Type" : "AWS::ElastiCache::SubnetGroup",
"Properties" : {
"Description" : "Cache Subnet Group",
"SubnetIds" : [ { "Ref" : "CacheSubnet01" }, { "Ref" : "CacheSubnet02" } ]
"SubnetIds" : [ { "Ref" : "Cache01" }, { "Ref" : "Cache02" } ]
}
},
"CacheCluster" : {
"Type": "AWS::ElastiCache::CacheCluster",
"Properties": {
"NumCacheNodes" : { "Ref" : "NumberOfCacheNodes" }
"NumCacheNodes" : { "Ref" : "NumberOfCacheNodes" },
"CacheNodeType" : { "Ref" : "CacheNodeType" },
"Engine" : "memcached",
"EngineVersion": "1.4.5",
......@@ -5212,9 +5212,9 @@
]
},
"CacheParameterGroupName": "default.memcached1.4",
"AutoMinorVersionUpgrade": true
"AutoMinorVersionUpgrade": true,
"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