Skip to content

Instantly share code, notes, and snippets.

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/6f3d5aa7e6abc9117bd0c7a482b2123e to your computer and use it in GitHub Desktop.
Save rtrentin73/6f3d5aa7e6abc9117bd0c7a482b2123e to your computer and use it in GitHub Desktop.
terraform {
required_providers {
aviatrix = {
source = "AviatrixSystems/aviatrix"
version = "2.21.2"
}
azurerm = {
source = "hashicorp/azurerm"
version = "3.1.0"
}
http = {
source = "hashicorp/http"
version = "2.1.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
}
provider "http" {
# Configuration options
}
data "http" "ip" {
url = "https://ifconfig.me/"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment