Terraform 5

Terraform - tfstate

1. tfstate의 역할현재 인프라 상태 저장 – Terraform이 관리하는 모든 리소스의 정보를 JSON 형식으로 저장변경 사항 추적 – Terraform 실행 시 기존 인프라와 새로운 코드의 차이를 비교하여 필요한 변경만 적용동일한 상태 공유 – 여러 팀원과 동일한 인프라 상태를 공유할 수 있도록 원격 저장소(예: AWS S3, Terraform Cloud) 사용 가능 2. tfstate 파일의 주요 구조{ "version": 4, "terraform_version": "1.6.0", "serial": 3, "lineage": "abcd-efgh-ijkl-mnop", "outputs": {}, "resources": [ { "mode": "managed", "ty..

Terraform 2025.02.11

Terraform - 변수 타입

1) String, Number, Bool variable "example_string" { type = string default = "Terraform"}variable "example_number" { type = number default = 10}variable "example_bool" { type = bool default = true}  2) list, map, object, tuple, set, any  2-1) list여러 값을 순서대로 저장하는 배열 형태의 자료구조리스트의 모든 요소는 같은 데이터 타입이어야 함list() 형태로 정의variable "example_list" { type = list(string) default = ["aws", "g..

Terraform 2025.02.10

Terraform - Resource

Terraform에서 resource는 인프라의 구성 요소를 정의하는 가장 기본적인 블록 resource의 기본적인 정의 형태 resource "_" "" { # 설정값 (Arguments)}AWS EC2 인스턴스 생성 예제 provider "aws" { region = "ap-northeast-2"}resource "aws_instance" "example" { ami = "ami-0c55b159cbfafe1f0" # Amazon Linux AMI ID instance_type = "t2.micro" tags = { Name = "MyTerraformInstance" }} aws_instance: AWS의 EC2 인스턴스를 정의하는 리소스 타입 example: Terr..

Terraform 2025.02.10