Remove cli/qemu, use cloudtypes instead

This commit is contained in:
katexochen 2022-06-07 11:29:41 +02:00 committed by Paul Meyer
parent f9b471e3c0
commit 4b30dd21c8
4 changed files with 6 additions and 139 deletions

View file

@ -2,9 +2,9 @@ package state
import (
"github.com/edgelesssys/constellation/cli/azure"
"github.com/edgelesssys/constellation/cli/cloud/cloudtypes"
"github.com/edgelesssys/constellation/cli/ec2"
"github.com/edgelesssys/constellation/cli/gcp"
"github.com/edgelesssys/constellation/cli/qemu"
)
// ConstellationState is the state of a Constellation.
@ -42,6 +42,6 @@ type ConstellationState struct {
AzureCoordinatorsScaleSet string `json:"azurecoordinatorsscaleset,omitempty"`
AzureADAppObjectID string `json:"azureadappobjectid,omitempty"`
QEMUNodes qemu.Instances `json:"qemunodes,omitempty"`
QEMUCoordinators qemu.Instances `json:"qemucoordinators,omitempty"`
QEMUNodes cloudtypes.Instances `json:"qemunodes,omitempty"`
QEMUCoordinators cloudtypes.Instances `json:"qemucoordinators,omitempty"`
}