Skip to content

Commit

Permalink
Change to properties doesn't force a rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Rwwn committed Feb 15, 2023
1 parent 32a86b0 commit 4480510
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/provider/gocd_provider_schemas.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
},
Expand Down

0 comments on commit 4480510

Please sign in to comment.