Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 1 KB

elb.README.md

File metadata and controls

36 lines (33 loc) · 1 KB

elb nested stack

To use this stack you will need to set the required input parameters and include the stack as a resource.

Example input definition

    "StacksVersion": {
      "Description": "Version of the Nubis Stacks",
      "Type": "String",
      "Default": "v1.0.0"
    },

Example resource definition

    "ELBStack": {
      "Type": "AWS::CloudFormation::Stack",
      "Properties": {
        "TemplateURL": { "Fn::Join": [ "/", [ "https://s3.amazonaws.com/nubis-stacks", { "Ref": "StacksVersion" }, "elb.template" ] ] },
        "TimeoutInMinutes": "60",
        "Parameters": {
          "ServiceName": {
            "Ref": "ServiceName"
          },
          "TechnicalOwner": {
            "Ref": "TechnicalOwner"
          },
          "Environment": {
            "Ref": "Environment"
          },
          "ElbHealthTarget": "HTTP:80/index.html",
          "SSLCertificate": "arn:aws:iam::<account-id>:server-certificate/<cert-name>" [optionnal]
        }
      }
    }