diff options
author | Mat Schaffer <mat@schaffer.me> | 2018-02-01 16:08:10 +0900 |
---|---|---|
committer | Mat Schaffer <mat@schaffer.me> | 2018-02-01 16:08:10 +0900 |
commit | ed5e20e8578d3a01b41fecf3f075887bd3e24584 (patch) | |
tree | 67bd81bfb1e0c105e821f727044ea41921dac77d | |
parent | aa4f9726b4fd3cc624fe5784b033840a6c92c84c (diff) | |
download | terraform-provider-statuscake-ed5e20e8578d3a01b41fecf3f075887bd3e24584.tar.gz terraform-provider-statuscake-ed5e20e8578d3a01b41fecf3f075887bd3e24584.tar.zst terraform-provider-statuscake-ed5e20e8578d3a01b41fecf3f075887bd3e24584.zip |
Mark basic_pass sensitive
Avoids showing the password in plan output
-rw-r--r-- | statuscake/resource_statuscaketest.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/statuscake/resource_statuscaketest.go b/statuscake/resource_statuscaketest.go index 459c71a..e824955 100644 --- a/statuscake/resource_statuscaketest.go +++ b/statuscake/resource_statuscaketest.go | |||
@@ -123,8 +123,9 @@ func resourceStatusCakeTest() *schema.Resource { | |||
123 | }, | 123 | }, |
124 | 124 | ||
125 | "basic_pass": { | 125 | "basic_pass": { |
126 | Type: schema.TypeString, | 126 | Type: schema.TypeString, |
127 | Optional: true, | 127 | Optional: true, |
128 | Sensitive: true, | ||
128 | }, | 129 | }, |
129 | 130 | ||
130 | "public": { | 131 | "public": { |