From 44805109e964a9688a13939c2831d5633d18a6a7 Mon Sep 17 00:00:00 2001 From: Rwwn Date: Wed, 15 Feb 2023 16:38:09 +0000 Subject: [PATCH] Change to properties doesn't force a rebuild --- internal/provider/gocd_provider_schemas.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/provider/gocd_provider_schemas.go b/internal/provider/gocd_provider_schemas.go index 47eb825..642dfcf 100644 --- a/internal/provider/gocd_provider_schemas.go +++ b/internal/provider/gocd_provider_schemas.go @@ -227,21 +227,21 @@ func propertiesSchemaResource() *schema.Schema { Type: schema.TypeString, Optional: true, Computed: false, - ForceNew: true, + ForceNew: false, Description: "The value of the property", }, "encrypted_value": { Type: schema.TypeString, Optional: true, Computed: false, - ForceNew: true, + ForceNew: false, Description: "The encrypted value of the property", }, "is_secure": { Type: schema.TypeBool, Optional: true, Computed: false, - ForceNew: true, + ForceNew: false, Description: "Specify whether the given property is secure or not. If true and encrypted_value is not specified, " + "GoCD will store the value in encrypted format.", },