Introduction
Providers
mkdir terraform && cd terraformtouch main.tfterraform { required_providers { aws = { source = "hashicorp/aws" version = "5.45.0" } } }terraform initfind .cat .terraform.lock.hclcp .terraform.lock.hcl .terraform.lock.hcl.copyterraform providers lock \ --platform=linux_arm64 \ --platform=linux_amd64 \ --platform=darwin_amd64 \ --platform=windows_amd64diff .terraform.lock.hcl.copy .terraform.lock.hcl -yrm .terraform.lock.hcl.copy
리소스 생성
Last updated