Skip to main content

Hello , the mentioned url for the IaC lab 1 course shows a 6.7 controller being used, however , the SST installs a 7.0-controller which isn't working with the code in that github repo. As a result : terraform always fails.
Upgrading the source-version in versions.tf doesn't work

Please help me out


 

 

If you set only the required Variables in the provider.tf file, it will work normally.

 

provider "aviatrix" {
  controller_ip = var.controller_ip
  username      = var.username
  password      = var.password
}

Use the password entered in the Launch Controller with the sandbox starter. username is admin.

For ip, check the public IP of the Aviatrix Controller on the awsec2 dashboard.


Reply