0. IaC 1. AWS CloudFormation(Azure Resource Manager, GCP Deployment Manager) 1.1 Resource 파일 생성 # vi test-vpc.yaml AWSTemplateFormatVersion: 2010-09-09 Resources: VPC: ## 논리적 이름; 내가 정할 수 있다. Type: AWS::EC2::VPC Properties: CidrBlock: 192.168.0.0/16 EnableDnsSupport: true EnableDnsHostnames: true InstanceTenancy: default Tags: - Key: Name Value: test-vpc PUB2A: Type: AWS::EC2::Subnet Properties: ..