Start automating demo infra provisioning.

This commit is contained in:
2023-03-10 10:24:23 +13:00
parent ee142acc6e
commit 429ce73a1b
16 changed files with 485 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Application definition
app_name = "microshift" # Don't enter any spaces
app_environment = "dev" # Dev, Test, Staging, Prod, etc
# Network ranges
vpc_cidr = "10.11.0.0/16"
public_subnet_cidr = "10.11.1.0/24"
# Aws region to deploy into
aws_region = "ap-southeast-2"
# Linux server variables
linux_instance_type = "t2.large"
linux_associate_public_ip_address = true
linux_root_volume_size = 20
linux_root_volume_type = "gp2"
linux_data_volume_size = 10
linux_data_volume_type = "gp2"