Make version of CCM / CSI configurable

This commit is contained in:
Dennis Hoppe
2022-01-13 13:32:17 +01:00
parent db3876bca4
commit 05332e7ae3
11 changed files with 74 additions and 22 deletions

View File

@@ -42,3 +42,15 @@ variable "agents_num" {
description = "Number of agent nodes."
type = number
}
variable "hetzner_ccm_version" {
type = string
default = null
description = "Version of Kubernetes Cloud Controller Manager for Hetzner Cloud"
}
variable "hetzner_csi_version" {
type = string
default = null
description = "Version of Container Storage Interface driver for Hetzner Cloud"
}