Skip to content

Commit 9694e22

Browse files
committed
fix attribute descriptions
1 parent 07d245f commit 9694e22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kubernetes/resource_kubernetes_secret_v1.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func resourceKubernetesSecretV1() *schema.Resource {
8484
},
8585
"data_wo": {
8686
Type: schema.TypeMap,
87-
Description: "(Write-only) A map of the secret data.",
87+
Description: "A map write-only of the secret data.",
8888
Optional: true,
8989
WriteOnly: true,
9090
ConflictsWith: []string{"data"},
@@ -97,7 +97,7 @@ func resourceKubernetesSecretV1() *schema.Resource {
9797
},
9898
"binary_data_wo": {
9999
Type: schema.TypeMap,
100-
Description: "(Write-only)A map of the secret data in base64 encoding. Use this for binary data.",
100+
Description: "A write-only map of the secret data in base64 encoding. Use this for binary data.",
101101
Optional: true,
102102
ConflictsWith: []string{"binary_data"},
103103
WriteOnly: true,

0 commit comments

Comments
 (0)