diff --git a/aws/cloud-formation/cache/cache.yaml b/aws/cloud-formation/cache/cache.yaml index 71920aa79c..e59d64b3ce 100644 --- a/aws/cloud-formation/cache/cache.yaml +++ b/aws/cloud-formation/cache/cache.yaml @@ -61,13 +61,13 @@ Resources: - Key: Project Value: !Ref Project - CacheCluster: + CacheClusterV2: Type: 'AWS::ElastiCache::CacheCluster' Properties: ClusterName: !Sub "${Environment}roadLinkcache" AutoMinorVersionUpgrade: true AZMode: single-az - CacheNodeType: cache.r6g.large + CacheNodeType: cache.t4g.medium CacheParameterGroupName: !Ref CacheParameterGroupInreasedItemSize CacheSubnetGroupName: !Ref CacheSubnetGroupName Engine: memcached @@ -88,7 +88,7 @@ Resources: Outputs: CacheURL: Description: Port of cache url - Value: !GetAtt CacheCluster.ConfigurationEndpoint.Address + Value: !GetAtt CacheClusterV2.ConfigurationEndpoint.Address CachePort: Description: Port of cache service - Value: !GetAtt CacheCluster.ConfigurationEndpoint.Port \ No newline at end of file + Value: !GetAtt CacheClusterV2.ConfigurationEndpoint.Port \ No newline at end of file