Robert Wettlaufer
05/18/2022, 10:50 PMCoreRedis
of type AWS:ElastiCache:CacheCluster) and sets a few SSM parameters based on the newly created instance. It’s throwing the error
The CloudFormation template is invalid: Template error: resource CoreRedis does not support attribute type RedisEndpoint in Fn::GetAtt
I’m not sure why it’s getting flagged as an invalid template or complaining about AWS::ElastiCache::CacheCluster !GetAtt CoreRedis.RedisEndpoint.(Address|Port)
because that’s exactly how it’s specified in the AWS docs - any ideas?Robert Wettlaufer
05/18/2022, 10:50 PMRobert Wettlaufer
05/18/2022, 10:58 PMFrank
Robert Wettlaufer
05/19/2022, 4:13 PMValue: !GetAtt CoreRedis.RedisEndpoint.Address
I had to use:
Value:
Fn::GetAtt:
- CoreRedis
- RedisEndpoint.Address
but finally got it deployed!Robert Wettlaufer
05/19/2022, 4:13 PM