Skip to content

Commit

Permalink
Mark resource_runner token as sensitive (#120)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
3 people authored May 31, 2021
1 parent db4040c commit 88f2162
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions iterative/resource_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ func resourceRunner() *schema.Resource {
ForceNew: true,
},
"token": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Default: "",
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Default: "",
Sensitive: true,
},
"driver": &schema.Schema{
Type: schema.TypeString,
Expand Down

0 comments on commit 88f2162

Please sign in to comment.