infrastructure/k8s.tjo.cloud/variables.tf

28 lines
400 B
Terraform
Raw Normal View History

2024-07-14 10:19:37 +00:00
variable "oidc_username" {
type = string
}
variable "oidc_password" {
type = string
sensitive = true
}
variable "oidc_client_id" {
type = string
}
variable "oidc_issuer_url" {
type = string
}
2024-07-14 11:37:57 +00:00
2025-01-03 20:59:46 +00:00
variable "dnsimple_token" {
2024-07-14 11:37:57 +00:00
type = string
sensitive = true
}
2025-01-04 10:03:37 +00:00
variable "dnsimple_account_id" {
type = string
}
variable "proxmox_token" {
type = string
sensitive = true
}