본문 바로가기

반응형

테라폼 설치

테라폼(Terraform) CLI를 설치하는 방법 테라폼(Terraform) CLI를 설치하는 방법 테스트 환경 $ lsb_release -d Description:Ubuntu 22.04.2 LTS 테라폼 다운로드 공식 테라폼 웹사이트(https://www.terraform.io/downloads.html)에서 운영체제에 맞는 바이너리 파일을 다운로드합니다. 테라폼은 Windows, macOS, Linux 등 다양한 운영체제를 지원하므로 해당하는 바이너리 파일을 선택합니다. 테라폼(Terraform) 설치 테라폼 저장소 추가 wget -q -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg echo.. 더보기
macOS에서 Terraform을 설치하는 방법 macOS에서 Terraform을 설치하는 방법 1. 홈브류(Homebrew) 패키지 매니저를 사용하여 설치 만약 홈브류가 설치되어 있지 않다면, 먼저 홈브류를 설치합니다. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 설치 후에는 다음 명령어로 Terraform을 설치합니다. hashicorp tap 저장소 설치 brew tap hashicorp/tap terraform 설치 brew install hashicorp/tap/terraform 2. 수동 다운로드 및 설치 Terraform 공식 웹사이트에서 바이너리 파일을 다운로드하고 설치할 수도 있습니다. https://www.. 더보기
CentOS 7에서 Terraform을 설치하는 방법 CentOS 7에서 Terraform을 설치하는 방법 yum install -y yum-utils yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo yum install -y terraform terraform -version $ terraform -version Terraform v0.14.5 terraform 사용 방법 $ terraform -help Usage: terraform [global options] [args] The available commands for execution are listed below. The primary workflow commands are given first.. 더보기

728x90
반응형