From bef9f11ef08dc9e88bdb1d7abd32b20b96774b8e Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Fri, 21 Jun 2024 11:35:37 -0500 Subject: [PATCH] Fix: fix k8s_namespace drift (#880) --- client/environment.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/environment.go b/client/environment.go index c8c9d1e6..0c64ce84 100644 --- a/client/environment.go +++ b/client/environment.go @@ -125,7 +125,7 @@ type Environment struct { IsRemoteBackend *bool `json:"isRemoteBackend" tfschema:"-"` IsArchived *bool `json:"isArchived" tfschema:"-"` IsRemoteApplyEnabled bool `json:"isRemoteApplyEnabled"` - K8sNamespace string `json:"k8s_namespace"` + K8sNamespace string `json:"k8sNamespace"` IsSingleUseBlueprint bool `json:"isSingleUseBlueprint" tfschema:"-"` } @@ -147,7 +147,7 @@ type EnvironmentCreate struct { Type string `json:"type,omitempty"` DriftDetectionRequest *DriftDetectionRequest `json:"driftDetectionRequest,omitempty" tfschema:"-"` PreventAutoDeploy *bool `json:"preventAutoDeploy,omitempty" tfschema:"-"` - K8sNamespace string `json:"k8s_namespace,omitempty"` + K8sNamespace string `json:"k8sNamespace,omitempty"` ConfigurationSetChanges *ConfigurationSetChanges `json:"configurationSetChanges,omitempty" tfschema:"-"` }