Terraform - VPC 및 Subnet 생성
provider "aws" { region = "ap-northeast-2" } resource "aws_vpc" "vpc-10-10-0-0" { cidr_block = "10.10.0.0/16" instance_tenancy = "default" enable_dns_hostnames = true tags = { Name = "vpc-10-10-0-0" } } resource "aws_subnet" "sub-pub1-10-10-1-0" { vpc_id = aws_vpc.vpc-10-10-0-0.id cidr_block = "10.10.1.0/24" availability_zone = "ap-northeast-2a" map_public_ip_on_launch = true tags = { Name = "su..