Search
Duplicate
🍎

Terraform in MAC 사용환경 세팅

날짜
2022/05/14
작성자
태그
IaC
Terraform
Linux
Series
Terraform 입문하기!
완료

brew 설치 (없는 경우만!)

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)
Bash
복사

Terraform 설치 (tfenv 사용)

# tfenv 설치 $ brew install tfenv # terraform 최신 버전 설치 (추천) $ tfenv install # terraform 특정 버전 설치 $ tfenv install 1.1.3 # terraform 특정 버전 사용 $ tfenv use 1.1.3 # terraform 버전 확인 $ terraform version Terraform v1.1.3
Bash
복사
버전 스위칭도 자유롭습니다