hahn

[Terraform]HCL 언어구조 본문

클라우드/Terraform

[Terraform]HCL 언어구조

hahn 2024. 8. 5. 06:21
728x90
반응형

Block : HCL 코드의 최소 단위

provider "aws" {
	region = "ap-northeast-2"
}

 

Block은 argument로 구성

 

meta-argument : hashicorp에서 제공하는 argument

 

The for_each Meta-Argument - Configuration Language | Terraform | HashiCorp Developer

 

The for_each Meta-Argument - Configuration Language | Terraform | HashiCorp Developer

The for_each meta-argument allows you to manage similar infrastructure resources without writing a separate block for each one.

developer.hashicorp.com

728x90
반응형

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

[Terraform] 참조  (0) 2024.08.06
[Terraform] helloworld 파일 생성  (0) 2024.08.06
[Terraform] 실행 준비, 적용, 삭제  (0) 2024.08.05
[Terraform] Install on Windows 10  (0) 2024.08.05
[Terraform] Expression Type  (0) 2024.08.05