Monday, February 14, 2022

Upgrade Terraform Provider


I am trying now to upgrade the Terraform provider which I am using for my NSX-T

First you have to put the new provider version in your main.tf file 


terraform {

  required_providers {

    nsxt = {

    source  = "vmware/nsxt"

      version = "3.2.5"

    }

  }

}


Second is to execute the below command

 .\terraform init -upgrade


once you execute the above command you will find output like the below output. That means that you upgraded your Terraform provider successfully







 

No comments:

Post a Comment

NSX-T (local log in) with VIDM integration

We will explain how to log in with a local account to your NSX-T which integrated with VIDM. We integrated our NSX-T into the VIDM. We had a...