hahn

[Terraform] helloworld 파일 생성 본문

클라우드/Terraform

[Terraform] helloworld 파일 생성

hahn 2024. 8. 6. 03:38
728x90
반응형
terraform {
  required_providers {
    local = {
      source  = "hashicorp/local"
      version = "2.5.1"
    }
  }

  required_version = ">= 1.4"
}

resource "local_file" "test" {
  content  = "helloworld"
  filename = "helloworld.txt"
}

resource "local_file" "test1" {
  content  = "test"
  filename = "test.txt"
}

 

required_providers : Terraform이 사용할 공급자

 

resource "local_file" "test" { : 리소스를 정의

 

test는 리소스의 이름으로 local_file의 구분자

 

local_file은 공급자에 의해 제공되는 리소스 유형으로 예약된 식별자

 

local_file | Resources | hashicorp/local | Terraform | Terraform Registry

 

Terraform Registry

 

registry.terraform.io

 

728x90
반응형

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

[Terraform] AWS provider 생성  (0) 2024.08.06
[Terraform] 참조  (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