[내용]

[Terraform Code]

  1. provider.tf

    terraform {
      required_providers {
        azurerm = {
          source  = "hashicorp/azurerm"
          version = "=3.71.0"
        }
      }
    }
    
    provider "azurerm" {
      skip_provider_registration = true
      features {}
    }
    
  2. 모듈화

    2-1) Application Gateway 모듈 및 변수

    2-2) Virtual Machine 모듈 및 변수

    2-3) Virtual Network 모듈 및 변수

  3. main.tf

  4. terraform.tfvars

[Azure로 배포]

※ terraform을 통해서 Azure에 배포하기 위해서는 az login이 되어있어야하고 구독 설정이 완벽하게 되어있어야한다.

  1. Azure 로그인

    az login
    
  2. 구독 설정 및 확인

    az account set --subscribe=구독ID
    
    az account list -o table
    
    az account show -o table
    

    Untitled

  3. 테라폼 초기화 및 plan, apply

    terraform init 
    -> 모듈에 변경사항이 있을경우 init 해주는게 좋음 
    
    terraform plan
    -> 미리 생성될 리소스 배포 테스트 및 에러 확인 
    
    terraform apply --auto-approve
    -> plan은 잘 되었지만 apply에서 에러 발생 할 수 있음.