ABOUT ME

누구나 알기 쉽게 클라우드 설명해주는 남자

Today
Yesterday
Total
  • Terraform Install

    IaC/Terraform 기초 2023. 8. 31. 08:32

     

    먼저 테라폼을 실행하기 위해서는 테라폼을 설치해봅시다.

    우선 그냥 무지성으로 설치하는 방법에 대해 설명해보겠습니다.

    이런건  ChatGPT 가 잘 알려주니 GPT 에게 물어보았습니다.

    GPT가 알려준 각 환경별 테라폼 설치 방법은 다음과 같습니다.

     

    1. Windows:
    Download the Terraform executable for Windows from the official Terraform website: https://www.terraform.io/downloads.htmlExtract the downloaded ZIP file to a location on your computer. Add the path to the extracted Terraform executable to your system's PATH environment variable. This step is important so you can run Terraform from any command prompt.

     

    윈도우는 공식사이트 (https://www.terraform.io/downloads.htmlExtract) 에 들어가서 다운로드 받아서 설치하고

    시스템에서 환경변수에 테라폼이 설치되어 있는 경로(Path)를 입력해주면 되는군요.

     

    2. macOS:
    You can use Homebrew to install Terraform on macOS if you have Homebrew installed.Open a terminal and run the following command to install Terraform:

    brew update
    brew install terraform

     

    맥OS는 brew 커맨드를 통해 설치하면 간단합니다.

     

    3. Linux:
    You can use your distribution's package manager to install Terraform.
    Here are some examples for popular package managers:
    For Ubuntu/Debian:
     
    sudo apt-get update

    sudo apt-get install terraform

     

    리눅스(우분투/데비안 기준)는 apt-get install로 설치합니다.

     

    테라폼을 버전별로 관리해주는 tfenv를 통해서 설치할 수도 있습니다.

     

    우선, 다음과 같이 tfenv를 설치합니다.

    <MacOS>

    brew install tfenv
    <Ubuntu/Linux>

    apt-get install tfenv

     

     

    그러면 tfenv 명령어를 통해 terraform을 버전별로 설치 관리할 수 있습니다.

    (여기서는 버전 1.4.6을 설치해보겠습니다. 테라폼 버전 정보는 https://releases.hashicorp.com/terraform/ 에 나와있습니다.)

    <tfenv>
    - 테라폼 v 1.4.6 설치
        tfenv install 1.4.6

    - 기본 버전 (v 1.4.6) 지정하기
        tfenv use 1.4.6

    - 현재 설치된 테라폼 버전 보기:
        tfenv list

     

     

    이렇게 하면 테라폼 설치가 끝났습니다.

    설치가 잘 되었다면 terraform --version 으로 설치된 테라폼의 버전 정보를 확인할 수 있습니다.

     

    'IaC > Terraform 기초' 카테고리의 다른 글

    Terraform Apply  (0) 2023.09.05
    Terraform State  (0) 2023.09.03
    Terraform Plan  (0) 2023.09.03
    Terraform Init  (0) 2023.08.31
    Terraform이란?  (0) 2023.08.31
Designed by Tistory.