【CloudFormation講座】パラメーターとハンズオン

AWSTemplateFormatVersion: 2010-09-09

Parameters:
  VPCCIDR:
    Description: CIDR Block for VPC 
    Type: String
    Default: 10.0.16.0/21
  Name:
    Description: Tags Name for VPC 
    Type: String
    Default: MyVPC3fromCF

Resources: 
  MyVPC3:
    Type: AWS::EC2::VPC
    Properties:
      CidrBlock: !Ref VPCCIDR
      EnableDnsSupport: true
      Tags:
        - Key: Name
          Value: !Ref Name
01.CFnのパラメーターステートメント-1

通知
通知対象
0 Comments
新しい順
古い順 得票数
Inline Feedbacks
コメントを全て表示
コメントする

コメントする