From d8be43439617f07344b34bb3bf7f69f72ff01f8f Mon Sep 17 00:00:00 2001 From: Omar Khudeira Date: Fri, 15 Mar 2019 14:31:09 -0500 Subject: [PATCH] auth0_connection: set `client_secret` to sensitive --- 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,