kubernetes-init/modules/flux/variables.tf
2022-05-08 20:27:01 +02:00

31 lines
413 B
HCL

variable "path" {
type = string
nullable = false
}
variable "namespace" {
type = string
nullable = false
}
variable "url" {
type = string
nullable = false
}
variable "branch" {
type = string
nullable = false
}
variable "ssh_private_key_pem" {
type = string
nullable = false
sensitive = true
}
variable "ssh_public_key_pem" {
type = string
nullable = false
}