-
-
Save lvthillo/a269279bd567c8351349da17ca17b162 to your computer and use it in GitHub Desktop.
VPC
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
| Parameters: | |
| VPCCidr: | |
| AllowedPattern: '((\d{1,3})\.){3}\d{1,3}/\d{1,2}' | |
| Type: String | |
| Default: 10.0.0.0/16 | |
| Description: Enter the CIDR for your VPC | |
| ... | |
| Resources: | |
| VPC: | |
| Type: AWS::EC2::VPC | |
| Properties: | |
| CidrBlock: !Ref VPCCidr | |
| Tags: | |
| - Key: Name | |
| Value: VPC-1 | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment