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.", },