mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 02:18:47 +00:00
Is there a reason not to mark these `sensitive`? https://developer.hashicorp.com/terraform/tutorials/configuration-language/sensitive-variables
36 lines
782 B
HCL
36 lines
782 B
HCL
variable "project_id" {
|
|
description = "The ID of the project in which the resource belongs."
|
|
}
|
|
|
|
variable "slack_alerts_channel" {
|
|
type = string
|
|
description = "Slack channel which will receive monitoring alerts"
|
|
}
|
|
|
|
variable "slack_alerts_auth_token" {
|
|
type = string
|
|
description = "Slack auth token for the infra alerts channel"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "pagerduty_auth_token" {
|
|
type = string
|
|
description = "Pagerduty auth token for the infra alerts channel"
|
|
default = null
|
|
sensitive = true
|
|
}
|
|
|
|
variable "additional_notification_channels" {
|
|
type = list(string)
|
|
default = []
|
|
description = "List of mobile app notification channels"
|
|
}
|
|
|
|
variable "api_host" {
|
|
type = string
|
|
}
|
|
|
|
variable "web_host" {
|
|
type = string
|
|
}
|