I want to use the Cloudformation parameter template template shortcut for some Policy / Loadbalancers tag names, for example:
"SomeScalingGroupName": {
"Type": "String",
"Default": {"Fn::Join": ["", ["Process-", {"Ref": "Env"}, "-Some-Worker-Name"]]}
},
And I get the error message:
Template validation error: Template format error: each default member must be a string.
So my question is, if this is the correct way to use the join function in parameters? Or do I have another way to do this? Or do you have any better suggestions for using this?
Thanks!
source
share