From 5d9af04a607177f4ef1eda7bc9f8eb8d3b3d26b4 Mon Sep 17 00:00:00 2001 From: miampf Date: Thu, 11 Apr 2024 15:15:47 +0200 Subject: [PATCH] moved tags beneath name --- internal/config/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 93571a3a2..392fc35ca 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -67,15 +67,15 @@ type Config struct { // description: | // Name of the cluster. Name string `yaml:"name" validate:"valid_name,required"` + // description : | + // Custom tags to be applied to created cloud resources. + Tags cloudprovider.Tags `yaml:"tags" validate:"omitempty"` // description: | // Kubernetes version to be installed into the cluster. KubernetesVersion versions.ValidK8sVersion `yaml:"kubernetesVersion" validate:"required,supported_k8s_version"` // description: | // Microservice version to be installed into the cluster. Defaults to the version of the CLI. MicroserviceVersion semver.Semver `yaml:"microserviceVersion" validate:"required"` - // description : | - // Custom tags to be applied to created cloud resources. - Tags cloudprovider.Tags `yaml:"tags" validate:"omitempty"` // description: | // DON'T USE IN PRODUCTION: enable debug mode and use debug images. DebugCluster *bool `yaml:"debugCluster" validate:"required"`