Skip to main content
Solved

IAC lab 1 Issue (day 0)

  • October 19, 2023
  • 1 reply
  • 112 views

Forum|alt.badge.img

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


 

 

Best answer by Seokwoo Sean Kim

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.

View original
Did this topic help you find an answer to your question?

Seokwoo Sean Kim
Forum|alt.badge.img+2

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