From cd3a85b908cc9a70537320758d07b7bb026ae163 Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Mon, 18 Sep 2023 10:53:42 +0200 Subject: [PATCH] do not embed Infrastructure in State --- cli/internal/state/state.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/internal/state/state.go b/cli/internal/state/state.go index 3daf1cf640..8c7f6db0fc 100644 --- a/cli/internal/state/state.go +++ b/cli/internal/state/state.go @@ -9,8 +9,8 @@ package state // State describe the entire state to describe a Constellation cluster. type State struct { - Version string `yaml:"version"` - Infrastructure `yaml:"infrastructure"` + Version string `yaml:"version"` + Infrastructure Infrastructure `yaml:"infrastructure"` } // Infrastructure describe the state related to the cloud resources of the cluster.