Solved

IAC lab 1 Issue (day 0)

  • 19 October 2023
  • 1 reply
  • 87 views

Badge

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


 

 

icon

Best answer by Seokwoo Sean Kim 20 October 2023, 16:22

View original

1 reply

Userlevel 1
Badge +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