Last active
October 4, 2018 08:35
-
-
Save namtx/3cc42288a1a525419e9f7c2710dedf8f to your computer and use it in GitHub Desktop.
CloudFormation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Resources": { | |
| "VPC": { | |
| "Type": "AWS::EC2::VPC", | |
| "Properties": { | |
| "EnableDnsSupport": "true", | |
| "EnableDnsHostnames": "true", | |
| "CidrBlock": "10.0.0.0/16" | |
| }, | |
| "Metadata": { | |
| "AWS::CloudFormation::Designer": { | |
| "id": "1a126032-3cd8-48be-bfb7-ef7194541d7f" | |
| } | |
| } | |
| }, | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment