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

15
data.tf Normal file
View File

@@ -0,0 +1,15 @@
data "github_release" "hetzner_ccm" {
repository = "hcloud-cloud-controller-manager"
owner = "hetznercloud"
retrieve_by = "latest"
}
data "github_release" "hetzner_csi" {
repository = "csi-driver"
owner = "hetznercloud"
retrieve_by = "latest"
}
data "hcloud_image" "linux" {
name = local.hcloud_image_name
}