Skip to content

Instantly share code, notes, and snippets.

@rtrentin73
Last active June 2, 2022 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtrentin73/234622b23e6eb2d436072ad95a4db0d5 to your computer and use it in GitHub Desktop.
Save rtrentin73/234622b23e6eb2d436072ad95a4db0d5 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
aviatrix = {
source = "AviatrixSystems/aviatrix"
version = "2.22.2"
}
azurerm = {
source = "hashicorp/azurerm"
version = "3.8.0"
}
}
provider "aviatrix" {
controller_ip = var.controller_ip
username = var.username
password = var.password
skip_version_validation = true
verify_ssl_certificate = false
}
provider "azurerm" {
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment