27 lines
458 B
HCL
27 lines
458 B
HCL
variable "database_name" {
|
|
type = string
|
|
description = "database name to create"
|
|
}
|
|
|
|
variable "schema" {
|
|
type = string
|
|
default = "public"
|
|
description = "database schema to create"
|
|
}
|
|
|
|
variable "username" {
|
|
type = string
|
|
description = "user name owner of the new database"
|
|
}
|
|
|
|
variable "collate" {
|
|
default = "C"
|
|
}
|
|
|
|
variable "ctype" {
|
|
default = "fr_FR.utf8"
|
|
}
|
|
|
|
variable "privileges" {
|
|
default = ["CREATE", "CONNECT"]
|
|
} |