반응형
1. 시험환경
˙ ubuntu v20.04
˙ terraform(테라폼)
2. 목적
˙ ubuntu 리눅스 환경에서 terraform을 설치한다.
3. 적용
① 테라폼(terraform) 공식 사이트에서 운영체제별 설치 가이드를 확인할 수 있다.
- URL : https://developer.hashicorp.com/terraform/downloads
② 설치 명령어를 copy한다.
- 여기에서 ubuntu 환경에 설치한다.
1
2
3
|
wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install terraform
|
cs |
4. 결과
˙ 설치가 완료되면 설치경로 및 버전을 확인한다.
- $ which terraform
- $ terraform version
반응형
'프로그램 설치' 카테고리의 다른 글
도커 사용법(docker) 및 주요 명령어 매뉴얼 문서 (word) (0) | 2024.06.12 |
---|---|
Amazon Linux 환경에서 terraform(테라폼) 최신버전 설치 (1) | 2024.03.12 |
Redis Docker 설치 및 Cli 초기 접속 (2) | 2024.01.09 |
윈도우(window) 환경에서 톰캣(Tomcat) 최신버전 설치 (0) | 2024.01.06 |
windows 환경에서 nginx 최신버전 설치 (0) | 2024.01.06 |