From 1bf9a594e0325fca95100e2f79740c2660e79fb1 Mon Sep 17 00:00:00 2001 From: Jordan Date: Thu, 19 Nov 2020 10:19:48 +1100 Subject: [PATCH 1/2] added sensitive field to hide password parameter during plan and application --- instaclustr/resource_kafka_user.go | 1 + 1 file changed, 1 insertion(+) diff --git a/instaclustr/resource_kafka_user.go b/instaclustr/resource_kafka_user.go index aa913f5e..cbb04171 100644 --- a/instaclustr/resource_kafka_user.go +++ b/instaclustr/resource_kafka_user.go @@ -30,6 +30,7 @@ func resourceKafkaUser() *schema.Resource { "password": { Type: schema.TypeString, Required: true, + Sensitive: true, }, "initial_permissions": { From 74031c5dee5cfa82957e378cd7fb002b998cb3df Mon Sep 17 00:00:00 2001 From: Jordan Date: Thu, 19 Nov 2020 10:21:59 +1100 Subject: [PATCH 2/2] makefile Version bump --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 549eb7b7..31a2a11d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN_NAME="terraform-provider-instaclustr" -VERSION=v1.6.0 +VERSION=v1.7.1 .PHONY: install clean all build test testacc