kubernetes-init/modules/flux/variables.tf

31 lines
413 B
Terraform
Raw Normal View History

2022-05-08 17:02:47 +02:00
variable "path" {
type = string
nullable = false
}
variable "namespace" {
type = string
nullable = false
}
variable "url" {
type = string
nullable = false
}
variable "branch" {
type = string
nullable = false
}
2022-05-08 20:27:01 +02:00
variable "ssh_private_key_pem" {
type = string
nullable = false
sensitive = true
}
variable "ssh_public_key_pem" {
type = string
nullable = false
}