mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-07 16:06:35 -03:00
34 lines
664 B
Terraform
34 lines
664 B
Terraform
|
variable "url" {
|
||
|
type = string
|
||
|
description = "Caddy url for potiz"
|
||
|
}
|
||
|
|
||
|
variable "postgree_endpoint" {
|
||
|
type = string
|
||
|
description = "Postgree host for potiz"
|
||
|
}
|
||
|
|
||
|
variable "postgree_user" {
|
||
|
type = string
|
||
|
description = "Postgree username for potiz"
|
||
|
}
|
||
|
|
||
|
variable "postgree_password" {
|
||
|
type = string
|
||
|
description = "Postgree password for potiz"
|
||
|
}
|
||
|
|
||
|
variable "postgree_database" {
|
||
|
type = string
|
||
|
description = "Postgree database for potiz"
|
||
|
}
|
||
|
|
||
|
variable "redis_endpoint" {
|
||
|
type = string
|
||
|
description = "Redis host for potiz"
|
||
|
}
|
||
|
|
||
|
variable "jwt_secret" {
|
||
|
type = string
|
||
|
description = "JWT token for potiz"
|
||
|
}
|