2026-01-05 23:49:02 +00:00
|
|
|
variable "github_token" {
|
|
|
|
|
description = "GitHub token"
|
|
|
|
|
sensitive = true
|
|
|
|
|
type = string
|
|
|
|
|
default = ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "github_org" {
|
|
|
|
|
description = "GitHub organization"
|
|
|
|
|
type = string
|
|
|
|
|
default = ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "github_repository" {
|
|
|
|
|
description = "GitHub repository"
|
|
|
|
|
type = string
|
|
|
|
|
default = ""
|
|
|
|
|
}
|
2026-02-02 23:20:46 +00:00
|
|
|
|
|
|
|
|
variable "project_id" {
|
|
|
|
|
type = string
|
|
|
|
|
description = "Gcloud project id"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
variable "namespace" {
|
|
|
|
|
type = string
|
|
|
|
|
default = "cnpg-system"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "ksa_name" {
|
|
|
|
|
type = string
|
|
|
|
|
default = "cnpg-backup-sa"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "gcs_bucket_name" {
|
|
|
|
|
type = string
|
|
|
|
|
}
|