Skip to content

Instantly share code, notes, and snippets.

@rtrentin73
Created August 23, 2022 13:04
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/871920368cf0002a1dd74f5174d91b0c to your computer and use it in GitHub Desktop.
Save rtrentin73/871920368cf0002a1dd74f5174d91b0c to your computer and use it in GitHub Desktop.
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.19.1"
}
aviatrix = {
source = "aviatrixsystems/aviatrix"
version = "~> 2.23.0"
}
}
}
provider "azurerm" {
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
features {}
}
provider "aviatrix" {
controller_ip = var.controller_ip
username = var.username
password = var.password
skip_version_validation = true
verify_ssl_certificate = false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment