Skip to content

Instantly share code, notes, and snippets.

@rtrentin73
Created April 15, 2022 14:54
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/0e8d6b47321c706e1a63fba60f4768c5 to your computer and use it in GitHub Desktop.
Save rtrentin73/0e8d6b47321c706e1a63fba60f4768c5 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
aviatrix = {
source = "AviatrixSystems/aviatrix"
version = "2.21.2"
}
google = {
source = "hashicorp/google"
version = "4.14.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 "google" {
project = var.project
region = var.region
}
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