Mark the aws & gcs secrets as sensitive (#14634)

This commit is contained in:
Mike Tougeron 2017-05-18 13:29:13 -07:00 committed by Clint
parent a8c2828b63
commit 0e29b744df
1 changed files with 3 additions and 0 deletions

View File

@ -505,12 +505,14 @@ func resourceServiceV1() *schema.Resource {
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("FASTLY_S3_ACCESS_KEY", ""),
Description: "AWS Access Key",
Sensitive: true,
},
"s3_secret_key": {
Type: schema.TypeString,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("FASTLY_S3_SECRET_KEY", ""),
Description: "AWS Secret Key",
Sensitive: true,
},
// Optional fields
"path": {
@ -673,6 +675,7 @@ func resourceServiceV1() *schema.Resource {
Type: schema.TypeString,
Required: true,
Description: "The secret key associated with the target gcs bucket on your account.",
Sensitive: true,
},
// Optional fields
"path": {