Skip to content

Commit 88f2162

Browse files
0x2b3bfa0restyled-io[bot]restyled-commits
authored
Mark resource_runner token as sensitive (#120)
* Mark resource_runner token as sensitive * Restyled by gofmt (#121) Co-authored-by: Restyled.io <commits@restyled.io> Co-authored-by: restyled-io[bot] <32688539+restyled-io[bot]@users.noreply.github.com> Co-authored-by: Restyled.io <commits@restyled.io>
1 parent db4040c commit 88f2162

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

iterative/resource_runner.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@ func resourceRunner() *schema.Resource {
4040
ForceNew: true,
4141
},
4242
"token": &schema.Schema{
43-
Type: schema.TypeString,
44-
Optional: true,
45-
ForceNew: true,
46-
Default: "",
43+
Type: schema.TypeString,
44+
Optional: true,
45+
ForceNew: true,
46+
Default: "",
47+
Sensitive: true,
4748
},
4849
"driver": &schema.Schema{
4950
Type: schema.TypeString,

0 commit comments

Comments
 (0)