mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-07 16:06:35 -03:00
20 lines
360 B
Terraform
20 lines
360 B
Terraform
|
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"
|
||
|
}
|