diff --git a/data/data/aws/main.tf b/data/data/aws/main.tf index f0fc7674747..f6d7db44e6b 100644 --- a/data/data/aws/main.tf +++ b/data/data/aws/main.tf @@ -93,10 +93,6 @@ module "vpc" { external_worker_subnet_ids = "${compact(var.tectonic_aws_external_worker_subnet_ids)}" extra_tags = "${var.tectonic_aws_extra_tags}" - // empty map subnet_configs will have the vpc module creating subnets in all availabile AZs - new_master_subnet_configs = "${var.tectonic_aws_master_custom_subnets}" - new_worker_subnet_configs = "${var.tectonic_aws_worker_custom_subnets}" - private_master_endpoints = "${local.private_endpoints}" public_master_endpoints = "${local.public_endpoints}" } diff --git a/data/data/aws/variables-aws.tf b/data/data/aws/variables-aws.tf index 615e9a19045..76bbc70cb7c 100644 --- a/data/data/aws/variables-aws.tf +++ b/data/data/aws/variables-aws.tf @@ -171,29 +171,6 @@ Ignored if the volume type is not io1. EOF } -variable "tectonic_aws_master_custom_subnets" { - type = "map" - default = {} - - description = <