Skip to content

Commit f092059

Browse files
committed
Fixed the ConflictsWith to the correct field
1 parent c02ab2e commit f092059

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spacelift/resource_named_webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ func resourceNamedWebhook() *schema.Resource {
5959
ValidateDiagFunc: validations.DisallowEmptyString,
6060
},
6161
Optional: true,
62-
ConflictsWith: []string{"secret_wo", "secret_wo_version"},
6362
},
6463
"secret": {
6564
Type: schema.TypeString,
6665
Description: "secret used to sign each request so you're able to verify that the request comes from us. Defaults to an empty value. Note that once it's created, it will be just an empty string in the state due to security reasons.",
6766
Optional: true,
6867
Sensitive: true,
6968
DiffSuppressFunc: ignoreOnceCreated,
69+
ConflictsWith: []string{"secret_wo", "secret_wo_version"},
7070
},
7171
"secret_wo": {
7272
Type: schema.TypeString,

0 commit comments

Comments
 (0)