home-cloud/variables.tf

28 lines
556 B
Terraform
Raw Normal View History

2021-12-04 22:38:20 +01:00
variable "hcloud_csi_driver_token" {
2021-12-05 00:03:54 +01:00
type = string
sensitive = true
2021-12-04 22:38:20 +01:00
}
variable "hcloud_ccm_token" {
2021-12-05 00:03:54 +01:00
type = string
sensitive = true
}
variable "github_token" {
2022-01-08 19:05:53 +01:00
description = "Github Personal Access Token that is used by Terraform"
type = string
sensitive = true
}
variable "github_token_flux_notifications" {
description = "GH PAT used by flux for notifications"
type = string
sensitive = true
2020-04-04 23:23:13 +02:00
}
2023-02-25 23:22:41 +01:00
variable "listory_token" {
description = "Listory API Token"
type = string
sensitive = true
}