spring-petclinic/infra/terraform/aws/variables.tf
Jesse Houldsworth 00ed61ebb5 tf
2025-10-09 06:46:44 -07:00

46 lines
No EOL
738 B
HCL

variable "region" {
}
variable "name_prefix" {
}
variable "postgres_db_name" {
default = "feast"
}
variable "postgres_db_user" {
default = "feast"
}
variable "map_accounts" {
description = "Additional AWS account numbers to add to the aws-auth configmap."
type = list(string)
default = [
]
}
variable "map_roles" {
description = "Additional IAM roles to add to the aws-auth configmap."
type = list(object({
rolearn = string
username = string
groups = list(string)
}))
default = [
]
}
variable "use_persistent_emr_cluster" {
description = "Create a persistent EMR cluster."
default = true
}
variable "tags" {
description = "Tags"
type = map(string)
default = {}
}