Sha256: 36ddb9f1961c9aabe4644035e4a20fecb122be465d3357de8ec014c34f4f441f

Contents?: true

Size: 961 Bytes

Versions: 72

Compression:

Stored size: 961 Bytes

Contents

{
  "PublicASubnet" : {
    "Type" : "AWS::EC2::Subnet",
    "Properties" : {
      "VpcId" : { "Ref" : "VPC" },
      "AvailabilityZone" : "us-east-1a",
      "CidrBlock" : {"Fn::Join" : [ ".", [{"Ref" : "VPCPrefix"}, "1", "0/24"] ]}
    }
  },

  "PrivateASubnet" : {
    "Type" : "AWS::EC2::Subnet",
    "Properties" : {
      "VpcId" : { "Ref" : "VPC" },
      "AvailabilityZone" : "us-east-1a",
      "CidrBlock" : {"Fn::Join" : [ ".", [{"Ref" : "VPCPrefix"}, "101", "0/24"] ]}
    }
  },

  "PublicSubnetARouteTableAssociation" : {
    "Type" : "AWS::EC2::SubnetRouteTableAssociation",
    "Properties" : {
      "SubnetId" : { "Ref" : "PublicASubnet" },
      "RouteTableId" : { "Ref" : "PublicRouteTable" }
    }
  },

  "PrivateSubnetARouteTableAssociation" : {
    "Type" : "AWS::EC2::SubnetRouteTableAssociation",
    "Properties" : {
      "SubnetId" : { "Ref" : "PrivateASubnet" },
      "RouteTableId" : { "Ref" : "PrivateRouteTable" }
    }
  }
}

Version data entries

72 entries across 72 versions & 2 rubygems

Version Path
aws-cfn-compiler-0.9.7 example/resources/subnets.json
aws-cfn-decompiler-0.9.3 example/resources/subnets.json
aws-cfn-decompiler-0.9.2 example/resources/subnets.json
aws-cfn-compiler-0.9.5 example/resources/subnets.json
aws-cfn-compiler-0.9.4 example/resources/subnets.json
aws-cfn-compiler-0.9.3 example/resources/subnets.json
aws-cfn-compiler-0.9.2 example/resources/subnets.json
aws-cfn-decompiler-0.9.1 example/resources/subnets.json
aws-cfn-compiler-0.9.1 example/resources/subnets.json
aws-cfn-compiler-0.8.10 example/resources/subnets.json
aws-cfn-compiler-0.8.9 example/resources/subnets.json
aws-cfn-compiler-0.8.8 example/resources/subnets.json
aws-cfn-compiler-0.8.7 example/resources/subnets.json
aws-cfn-compiler-0.8.6 example/resources/subnets.json
aws-cfn-compiler-0.8.5 example/resources/subnets.json
aws-cfn-compiler-0.8.4 example/resources/subnets.json
aws-cfn-decompiler-0.8.2 example/resources/subnets.json
aws-cfn-compiler-0.8.3 example/resources/subnets.json
aws-cfn-compiler-0.8.2 example/resources/subnets.json
aws-cfn-decompiler-0.8.1 example/resources/subnets.json