terraform.aws-baseline-infra/modules/networking/vpc-endpoints/variables.tf

16 lines
538 B
HCL

variable vpc-id {}
variable interface-ep-services {
type = list(string)
description = "List of interface endpoint. E.g. dkr,lambda,kms,elasticloadbalancing,execute-api,ec2,ssm,secretsmanager,monitoring,guardduty-data"
}
variable gateway-ep-services {
type = list(string)
default = ["s3","dynamodb"]
description = "Gateway endpoints are free, so deploy for all supported services by default."
}
variable resource-prefix {}
variable secondary_cidrs {
type = list(string)
description = "Additional cidr blocks"
default = []
}