VPC overview

hyuckhoon.ko·2021년 1월 2일
0

What I learned in first year

목록 보기
36/146

1. VPC





git checkout -b feature/network

2. network.tf 파일 생성

deploy디렉토리 내 network.tf 파일 생성


resource "aws_vpc" "main" {
  cidr_block           = "10.1.0.0/16"
  enable_dns_support   = true
  enable_dns_hostnames = true

  tags = merge(
    local.common_tags,
    map("Name", "${local.prefix}-vpc")
  )
}

resource "aws_internet_gateway" "main" {
  vpc_id = aws_vpc.main.id

  tags = merge(
    local.common_tags,
    map("Name", "${local.prefix}-main")
  )
}




terraform 자료

https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/vpc

0개의 댓글