Sha256: a57e5d54588fc0bff0670c8550f5142bc204cc7540faeed2716dfbf9c84a80bf

Contents?: true

Size: 719 Bytes

Versions: 72

Compression:

Stored size: 719 Bytes

Contents

{ "PublicRouteTable" : {
    "Type" : "AWS::EC2::RouteTable",
    "Properties" : {
      "VpcId" : {"Ref" : "VPC"}
    }
  },

  "PublicRoute" : {
    "Type" : "AWS::EC2::Route",
    "Properties" : {
      "RouteTableId" : { "Ref" : "PublicRouteTable" },
      "DestinationCidrBlock" : "0.0.0.0/0",
      "GatewayId" : { "Ref" : "InternetGateway" }
    }
  },

  "PrivateRouteTable" : {
    "Type" : "AWS::EC2::RouteTable",
    "Properties" : {
      "VpcId" : {"Ref" : "VPC"}
    }
  },

  "PrivateRoute" : {
    "Type" : "AWS::EC2::Route",
    "Properties" : {
      "RouteTableId" : { "Ref" : "PrivateRouteTable" },
      "DestinationCidrBlock" : "0.0.0.0/0",
      "InstanceId" : { "Ref" : "NATDevice" }
    }
  }
}

Version data entries

72 entries across 72 versions & 2 rubygems

Version Path
aws-cfn-compiler-0.2.3 example/resources/routing.json
aws-cfn-decompiler-0.2.1 example/resources/routing.json
aws-cfn-compiler-0.2.1 example/resources/routing.json
aws-cfn-decompiler-0.0.3 example/resources/routing.json
aws-cfn-decompiler-0.0.2 example/resources/routing.json
aws-cfn-compiler-0.1.0 example/resources/routing.json
aws-cfn-compiler-0.0.8 example/resources/routing.json
aws-cfn-compiler-0.0.7 example/resources/routing.json
aws-cfn-compiler-0.0.6 example/resources/routing.json
aws-cfn-compiler-0.0.5 example/resources/routing.json
aws-cfn-compiler-0.0.4 example/resources/routing.json
aws-cfn-compiler-0.0.3 example/resources/routing.json