buster/warehouse/terraform/variables.tf

25 lines
489 B
Terraform
Raw Normal View History

2024-09-11 01:30:01 +08:00
variable "region" {
2024-09-11 22:28:34 +08:00
default = "us-west-1"
2024-09-11 01:30:01 +08:00
}
variable "cluster_name" {
2024-09-11 12:40:53 +08:00
default = "buster-warehouse"
2024-09-11 01:30:01 +08:00
}
variable "vpc_cidr" {
default = "10.0.0.0/16"
}
variable "allowed_cidr_blocks" {
type = list(string)
description = "List of CIDR blocks allowed to access the VPC"
default = ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
}
2024-09-11 12:40:53 +08:00
variable "postgres_password" {
description = "password"
type = string
sensitive = true
}
2024-09-11 01:30:01 +08:00
// Add more variables as needed