From 2b97179c8617d9cb33a1ba492248847acfd0d365 Mon Sep 17 00:00:00 2001 From: Mike Tougeron Date: Thu, 18 May 2017 08:57:13 -0700 Subject: [PATCH] Mark the aws & gcs secrets as sensitive --- builtin/providers/fastly/resource_fastly_service_v1.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builtin/providers/fastly/resource_fastly_service_v1.go b/builtin/providers/fastly/resource_fastly_service_v1.go index bb3fb6bfd1d9..e2a9ba07f486 100644 --- a/builtin/providers/fastly/resource_fastly_service_v1.go +++ b/builtin/providers/fastly/resource_fastly_service_v1.go @@ -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": {