diff --git a/main.tf b/main.tf index 3e3e20f..4921fc3 100644 --- a/main.tf +++ b/main.tf @@ -55,12 +55,12 @@ module "subnets" { module "vpc_endpoints" { #count = var.enable_s3_endpoint ? 1 : 0 #source = "git@github.com:webuildyourcloud/terraform-aws-vpc_endpoints.git?ref=tags/0.18.1" - source = "git@github.com:webuildyourcloud/terraform-aws-vpc_endpoints.git" + source = "git@github.com:webuildyourcloud/terraform-aws-vpc_endpoints.git" #region = var.region #name = var.name - vpc_id = module.vpc.vpc_id - private_route_table_id = module.subnets.private_route_table_ids - public_route_table_id = module.subnets.public_route_table_ids + vpc_id = module.vpc.vpc_id + private_route_table_ids = module.subnets.private_route_table_ids + public_route_table_ids = module.subnets.public_route_table_ids #tags = local.tags }