Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
feat(cfn): vpc basic
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennChia committed Jul 6, 2022
1 parent 4df6bae commit 03e2c87
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions blog-assets/change-cfn-stack-name/01-vpc-basic.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
AWSTemplateFormatVersion: 2010-09-09

Description: Deploys a VPC

Resources:
Vpc:
Type: AWS::EC2::VPC
Properties:
CidrBlock: 10.0.0.0/16
Tags:
- Key: Name
Value: rename-stack-demo

0 comments on commit 03e2c87

Please sign in to comment.