diff --git a/modules/networking/vpc-endpoints/README.md b/modules/networking/vpc-endpoints/README.md index 4ebbf98..174018f 100644 --- a/modules/networking/vpc-endpoints/README.md +++ b/modules/networking/vpc-endpoints/README.md @@ -271,6 +271,5 @@ module "vpc-ep" { interface-ep-services = [] resource-prefix = var.resource-prefix vpc-id = aws_vpc.vpc.id - secondary_cidrs = var.secondary_cidr_blocks } ``` \ No newline at end of file diff --git a/modules/networking/vpc-endpoints/variables.tf b/modules/networking/vpc-endpoints/variables.tf index 8fe041d..ea4d12b 100644 --- a/modules/networking/vpc-endpoints/variables.tf +++ b/modules/networking/vpc-endpoints/variables.tf @@ -9,8 +9,10 @@ variable gateway-ep-services { description = "s3 and dynamodb gateway endpoints are free." } variable resource-prefix {} +/* variable secondary_cidrs { type = list(string) description = "Additional cidr blocks" default = [] -} \ No newline at end of file +} +*/ \ No newline at end of file diff --git a/modules/networking/vpc-subnet-manual/main.tf b/modules/networking/vpc-subnet-manual/main.tf index aa55219..1e7566e 100644 --- a/modules/networking/vpc-subnet-manual/main.tf +++ b/modules/networking/vpc-subnet-manual/main.tf @@ -164,5 +164,4 @@ module "vpc-ep" { interface-ep-services = [] resource-prefix = var.resource-prefix vpc-id = aws_vpc.vpc.id - secondary_cidrs = var.secondary_cidr_blocks } \ No newline at end of file