01. 기본 설정 변수 파일 작성 # 99_var.tf variable "region" { type = string default = "ap-northeast-2" } variable "cidr" { type = string default = "10.0.0.0/16" } variable "rocidr" { type = string default = "0.0.0.0/0" } variable "name" { type = string default = "eks" } 프로바이더, region 등 기본 aws terraform 설정 # 01_init.tf terraform { required_providers { aws = { source = "hashicorp/aws" version = "~> 5.0" } } ..