Reputation: 1
I have below definition for ECS service:
"EcsService": {
"Type": "AWS::ECS::Service",
"Properties": {
"Cluster": { "Ref": "EcsCluster" },
"TaskDefinition": { "Ref": "EcsTaskDefinition" },
"DesiredCount": 1
}
}
for which CloudFormation service gives below message in Events tab:
FYI.. I have defined tags for only two resources:
Tag for ecs container instance "Tags": [ { "Key": "Name", "Value": { "Fn::Join": ["", [ { "Ref": "AWS::StackName"}, "-instance" ] ]} }]
This is another tag for elb security group "Tags": [ { "Key": "Name", "Value": { "Fn::Join": ["", [ { "Ref": "AWS::StackName" }, "-elb-sg" ] ] } } ]
1) What is the meaning of this error? For EcsService
2) How to resolve it?
Upvotes: 1
Views: 1644