module "dcos-cluster-01" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-01"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-01" {
value = "${module.dcos-cluster-01.masters-ips}"
}
output "cluster-address-cluster-01" {
value = "${module.dcos-cluster-01.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-01" {
value = "${module.dcos-cluster-01.public-agents-loadbalancer}"
}
module "dcos-cluster-02" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-02"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-02" {
value = "${module.dcos-cluster-02.masters-ips}"
}
output "cluster-address-cluster-02" {
value = "${module.dcos-cluster-02.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-02" {
value = "${module.dcos-cluster-02.public-agents-loadbalancer}"
}
module "dcos-cluster-03" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-03"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-03" {
value = "${module.dcos-cluster-03.masters-ips}"
}
output "cluster-address-cluster-03" {
value = "${module.dcos-cluster-03.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-03" {
value = "${module.dcos-cluster-03.public-agents-loadbalancer}"
}
module "dcos-cluster-04" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-04"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-04" {
value = "${module.dcos-cluster-04.masters-ips}"
}
output "cluster-address-cluster-04" {
value = "${module.dcos-cluster-04.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-04" {
value = "${module.dcos-cluster-04.public-agents-loadbalancer}"
}
module "dcos-cluster-05" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-05"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-05" {
value = "${module.dcos-cluster-05.masters-ips}"
}
output "cluster-address-cluster-05" {
value = "${module.dcos-cluster-05.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-05" {
value = "${module.dcos-cluster-05.public-agents-loadbalancer}"
}
module "dcos-cluster-06" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-06"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-06" {
value = "${module.dcos-cluster-06.masters-ips}"
}
output "cluster-address-cluster-06" {
value = "${module.dcos-cluster-06.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-06" {
value = "${module.dcos-cluster-06.public-agents-loadbalancer}"
}
module "dcos-cluster-07" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-07"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-07" {
value = "${module.dcos-cluster-07.masters-ips}"
}
output "cluster-address-cluster-07" {
value = "${module.dcos-cluster-07.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-07" {
value = "${module.dcos-cluster-07.public-agents-loadbalancer}"
}
module "dcos-cluster-08" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-08"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-08" {
value = "${module.dcos-cluster-08.masters-ips}"
}
output "cluster-address-cluster-08" {
value = "${module.dcos-cluster-08.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-08" {
value = "${module.dcos-cluster-08.public-agents-loadbalancer}"
}
module "dcos-cluster-09" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-09"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-09" {
value = "${module.dcos-cluster-09.masters-ips}"
}
output "cluster-address-cluster-09" {
value = "${module.dcos-cluster-09.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-09" {
value = "${module.dcos-cluster-09.public-agents-loadbalancer}"
}
module "dcos-cluster-10" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-10"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-10" {
value = "${module.dcos-cluster-10.masters-ips}"
}
output "cluster-address-cluster-10" {
value = "${module.dcos-cluster-10.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-10" {
value = "${module.dcos-cluster-10.public-agents-loadbalancer}"
}
module "dcos-cluster-11" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-11"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-11" {
value = "${module.dcos-cluster-11.masters-ips}"
}
output "cluster-address-cluster-11" {
value = "${module.dcos-cluster-11.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-11" {
value = "${module.dcos-cluster-11.public-agents-loadbalancer}"
}
module "dcos-cluster-12" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-12"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-12" {
value = "${module.dcos-cluster-12.masters-ips}"
}
output "cluster-address-cluster-12" {
value = "${module.dcos-cluster-12.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-12" {
value = "${module.dcos-cluster-12.public-agents-loadbalancer}"
}
module "dcos-cluster-13" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-13"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-13" {
value = "${module.dcos-cluster-13.masters-ips}"
}
output "cluster-address-cluster-13" {
value = "${module.dcos-cluster-13.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-13" {
value = "${module.dcos-cluster-13.public-agents-loadbalancer}"
}
module "dcos-cluster-14" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-14"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-14" {
value = "${module.dcos-cluster-14.masters-ips}"
}
output "cluster-address-cluster-14" {
value = "${module.dcos-cluster-14.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-14" {
value = "${module.dcos-cluster-14.public-agents-loadbalancer}"
}
module "dcos-cluster-15" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-15"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-15" {
value = "${module.dcos-cluster-15.masters-ips}"
}
output "cluster-address-cluster-15" {
value = "${module.dcos-cluster-15.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-15" {
value = "${module.dcos-cluster-15.public-agents-loadbalancer}"
}
module "dcos-cluster-16" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-16"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-16" {
value = "${module.dcos-cluster-16.masters-ips}"
}
output "cluster-address-cluster-16" {
value = "${module.dcos-cluster-16.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-16" {
value = "${module.dcos-cluster-16.public-agents-loadbalancer}"
}
module "dcos-cluster-17" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-17"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-17" {
value = "${module.dcos-cluster-17.masters-ips}"
}
output "cluster-address-cluster-17" {
value = "${module.dcos-cluster-17.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-17" {
value = "${module.dcos-cluster-17.public-agents-loadbalancer}"
}
module "dcos-cluster-18" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-18"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-18" {
value = "${module.dcos-cluster-18.masters-ips}"
}
output "cluster-address-cluster-18" {
value = "${module.dcos-cluster-18.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-18" {
value = "${module.dcos-cluster-18.public-agents-loadbalancer}"
}
module "dcos-cluster-19" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-19"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-19" {
value = "${module.dcos-cluster-19.masters-ips}"
}
output "cluster-address-cluster-19" {
value = "${module.dcos-cluster-19.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-19" {
value = "${module.dcos-cluster-19.public-agents-loadbalancer}"
}
module "dcos-cluster-20" {
source = "dcos-terraform/dcos/aws"
subnet_range = "172.16.0.0/16"
dcos_instance_os = "centos_7.5"
cluster_name = "dcos-days-cluster-20"
ssh_public_key_file = "~/.ssh/id_dcosdays.pub"
admin_ips = ["0.0.0.0/0"]
num_masters = "1"
num_private_agents = "4"
num_public_agents = "1"
bootstrap_instance_type = "t2.medium"
public_agents_instance_type = "m5.xlarge"
private_agents_instance_type = "m5.xlarge"
masters_instance_type = "m5.xlarge"
dcos_version = "1.12.3"
dcos_variant = "ee"
dcos_license_key_contents = "${file("license.txt")}"
tags = {workshop = "USAF"}
public_agents_additional_ports = ["6090", "6443", "7443", "3000", "9090", "9093", "9091", "30443"]
dcos_superuser_username = "usaf"
dcos_superuser_password_hash = "$6$rounds=656000$2xcwjS8axDU37lLS$273P/MXIBNOvSrf230E5jhrywP.yGvpjbSHomNHWEkLlgYSx9MnxZ4JZpAvkTH0Wo7nv5tz0k9DuL29SwTxje."
}
output "masters-ips-cluster-20" {
value = "${module.dcos-cluster-20.masters-ips}"
}
output "cluster-address-cluster-20" {
value = "${module.dcos-cluster-20.masters-loadbalancer}"
}
output "public-agents-loadbalancer-cluster-20" {
value = "${module.dcos-cluster-20.public-agents-loadbalancer}"
}