From 7aaf85a20e0dc319bd663d47ca5deda818fc9f60 Mon Sep 17 00:00:00 2001 From: Omar Khudeira Date: Mon, 18 Mar 2019 04:07:37 -0500 Subject: [PATCH] auth0_connection: set `client_secret` to sensitive (#91) --- auth0/resource_auth0_connection.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/auth0/resource_auth0_connection.go b/auth0/resource_auth0_connection.go index c675389d..b48b894e 100644 --- a/auth0/resource_auth0_connection.go +++ b/auth0/resource_auth0_connection.go @@ -181,8 +181,9 @@ func newConnection() *schema.Resource { Optional: true, }, "client_secret": { - Type: schema.TypeString, - Optional: true, + Type: schema.TypeString, + Optional: true, + Sensitive: true, }, "domain_aliases": { Type: schema.TypeList,