diff --git a/hack/terraform-to-state/create-state.go b/hack/terraform-to-state/create-state.go index 9a87c90ff..5862c5b64 100644 --- a/hack/terraform-to-state/create-state.go +++ b/hack/terraform-to-state/create-state.go @@ -7,6 +7,7 @@ import ( "os" "os/exec" + "github.com/edgelesssys/constellation/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/internal/cloud/cloudtypes" "github.com/edgelesssys/constellation/internal/state" ) @@ -40,7 +41,7 @@ func transformState(tfOut terraformOutput) state.ConstellationState { conState := state.ConstellationState{ Name: "qemu", UID: "debug", - CloudProvider: "qemu", + CloudProvider: cloudprovider.QEMU.String(), BootstrapperHost: tfOut.ControlPlaneIPs.Value[0], QEMUWorkers: cloudtypes.Instances{}, QEMUControlPlane: cloudtypes.Instances{}, diff --git a/terraform/libvirt/main.tf b/terraform/libvirt/main.tf index c4a75d03b..1207fac9b 100644 --- a/terraform/libvirt/main.tf +++ b/terraform/libvirt/main.tf @@ -25,7 +25,7 @@ provider "docker" { } resource "docker_image" "qemu-metadata" { - name = "ghcr.io/edgelesssys/constellation/qemu-metadata-api:v1.3.2-0.20220714151638-d295be31" + name = "ghcr.io/edgelesssys/constellation/qemu-metadata-api:v1.4.1-0.20220817163854-84e9f659542d" keep_locally = true }