This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "aws" { | |
region = "us-east-1" | |
# configure this as needed | |
} | |
data "aws_availability_zones" "_" {} | |
locals { | |
large_subnets_netmask = 20 # 4,096 IPs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xml.etree.ElementTree as ET | |
import json | |
import zlib | |
import base64 | |
import urllib.parse | |
import os | |
import uuid |