Created
March 5, 2020 12:25
-
-
Save AndrewBestbier/6dfe318b664765253c6e45a22c54675b to your computer and use it in GitHub Desktop.
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
InternetGateway: # (1) | |
Type: AWS::EC2::InternetGateway # (2) | |
DependsOn: VPC | |
AttachGateway: # (2) | |
Type: AWS::EC2::VPCGatewayAttachment # (4) | |
Properties: | |
VpcId: !Ref VPC # (5) | |
InternetGatewayId: !Ref InternetGateway # (6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment