To use this stack you will need to set the required input parameters and include the stack as a resource.
"StacksVersion": {
"Description": "Version of the Nubis Stacks",
"Type": "String",
"Default": "v1.0.0"
},
"MemcacheStack": {
"Type": "AWS::CloudFormation::Stack",
"Properties": {
"TemplateURL": { "Fn::Join": [ "/", [ "https://s3.amazonaws.com/nubis-stacks", { "Ref": "StacksVersion" }, "memcache.template" ] ] },
"TimeoutInMinutes": "60",
"Parameters": {
"ServiceName": {
"Ref": "ServiceName"
},
"TechnicalOwner": {
"Ref": "TechnicalOwner"
},
"Environment": {
"Ref": "Environment"
},
"EC2SecurityGroup": {
"Fn::GetAtt": [
"EC2Stack",
"Outputs.GroupId"
]
}
}
}
}