Terraform

Terraform - Variables ( variables.tf )

Vince_rf 2025. 2. 10. 00:06

변수 정의 (variables.tf 파일)

 

variable "instance_type" {
  description = "EC2 instance type"
  type        = string
  default     = "t2.micro"
}

 

 

리소스에서 변수 사용

 

resource "aws_instance" "example" {
  ami           = "ami-0c55b159cbfafe1f0"
  instance_type = var.instance_type
}

 

 

 

'Terraform' 카테고리의 다른 글

Terraform - tfstate  (0) 2025.02.11
Terraform - 변수 타입  (0) 2025.02.10
Terraform - Resource 의존성 (Dependency)  (0) 2025.02.10
Terraform - Resource  (0) 2025.02.10