applications/variables.tf

20 lines
268 B
Terraform
Raw Normal View History

2023-01-30 15:03:15 +01:00
variable "server_ip" {
sensitive = true
type = string
}
variable "postgres_password" {
sensitive = true
type = string
}
variable "grafana_password" {
sensitive = true
type = string
}
2023-03-09 15:10:58 +01:00
variable "smarthost_password" {
sensitive = true
type = string
}