github.com/keikoproj/manny@v0.0.0-20210726112440-8571e4c99ced/examples/templates/template.yaml (about)

     1  AWSTemplateFormatVersion: 2010-09-09
     2  
     3  Parameters:
     4    ChapiVersion:
     5      Description: The version of the chapi template to use.
     6      Type: String
     7      Default: latest
     8    VpcId:
     9      Type: AWS::EC2::VPC::Id
    10      Description: >-
    11        The VPC where the endpoint has to be deployed.
    12    Port:
    13      Type: Number
    14      Description: The port to allow inbound from Direct Expert Access Egress CIDRs
    15      Default: '443'
    16  
    17  Resources:
    18    ExpertIngressSG:
    19      Type: AWS::CloudFormation::Stack
    20      Properties:
    21        TemplateURL: !Sub
    22          - "https://raw.githubusercontent.com/awslabs/aws-cloudformation-templates/master/aws/services/EC2/EC2InstanceWithSecurityGroupSample.yaml"
    23          - { Version: !Ref ChapiVersion }
    24        Parameters:
    25          VpcId:
    26            Ref: VpcId
    27          Port:
    28            Ref: Port