21 lines
576 B
HCL

variable "vpc_id" {
description = "The VPC to launch the instance in (e.g. vpc-66ecaa02)."
type = string
}
variable "enable_s3_endpoint" {
description = "Should be true if you want to provision an S3 endpoint to the VPC"
type = bool
default = false
}
variable "public_route_table_ids" {
description = "Public route table of the VPC where then endpoint is located"
type = list(string)
}
variable "private_route_table_ids" {
description = "private route table of the VPC where then endpoint is located"
type = list(string)
}