homelab/terraform/modules/postgreeSQL/variables.tf

20 lines
360 B
Terraform
Raw Normal View History

2023-12-04 22:29:52 -03:00
variable "postgree_user" {
type = string
description = "Postgree username"
}
variable "postgree_password" {
type = string
description = "Poastgree password"
}
variable "pgadmin_user" {
type = string
description = "PgAdmin username"
}
variable "pgadmin_password" {
type = string
description = "PgAdmin password"
}