mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-04 05:11:12 +00:00
46 lines
No EOL
738 B
HCL
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 = {}
|
|
} |