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