hahn

[Terraform] VPC 생성 본문

클라우드/Terraform

[Terraform] VPC 생성

hahn 2024. 8. 6. 04:00
728x90
반응형

aws_vpc | Resources | hashicorp/aws | Terraform | Terraform Registry

 

Terraform Registry

 

registry.terraform.io

 

 

 

resource "aws_vpc" "main" {
  cidr_block = "172.0.0.0/16"
}

 

main.tf

 

terraform apply

 

 

하지만 Name이 없으니 추가로 설정을 해줘야한다.

 

terraform destroy 후

 

resource "aws_vpc" "main" {
  cidr_block = "172.0.0.0/16"

  tags = {
    Name = "terraform"
  }
}

 

 

terraform plan

 

 

name tag가 들어가는 걸 확인

 

terraform apply

728x90
반응형

'클라우드 > Terraform' 카테고리의 다른 글

[Terraform]state  (0) 2024.08.06
[Terraform] 변수 사용하기  (0) 2024.08.06
[Terraform] AWS provider 생성  (0) 2024.08.06
[Terraform] 참조  (0) 2024.08.06
[Terraform] helloworld 파일 생성  (0) 2024.08.06