UPD: deploy vpc endpoints by default
This commit is contained in:
parent
0b697c6af8
commit
9c0af27bdb
@ -158,4 +158,15 @@ resource "aws_default_security_group" default-sg {
|
|||||||
Name = "${local.resource-prefix}-defaultsg"
|
Name = "${local.resource-prefix}-defaultsg"
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
# Enable gateway endpoints which are free
|
||||||
|
module vpc-ep {
|
||||||
|
source = "../vpc-endpoints"
|
||||||
|
|
||||||
|
default-tags = var.default-tags
|
||||||
|
gateway-ep-services = ["s3","dynamodb"]
|
||||||
|
interface-ep-services = []
|
||||||
|
resource-prefix = local.resource-prefix
|
||||||
|
vpc-id = aws_vpc.vpc.id
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user