Mark the aws & gcs secrets as sensitive (#14634)
This commit is contained in:
parent
a8c2828b63
commit
0e29b744df
|
@ -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": {
|
||||
|
|
Loading…
Reference in New Issue