infrastructure/tf-stage-1/variables.tf

35 lines
553 B
Terraform
Raw Normal View History

2023-09-14 07:09:02 +02:00
variable "realm" {
type = string
}
variable "grafana_secret" {
type = string
sensitive = true
}
variable "hedgedoc_secret" {
type = string
sensitive = true
}
variable "miniflux_secret" {
type = string
sensitive = true
}
2023-09-15 17:51:31 +02:00
variable "synapse_secret" {
type = string
sensitive = true
}
2023-09-14 07:09:02 +02:00
variable "cloudflare_api_token" {
type = string
sensitive = true
}
variable "cloudflare_account_id" {
type = string
sensitive = true
}
variable "keycloak_client_secret" {
type = string
sensitive = true
}