From 6ced37570cd70e693cc427602a0fa1368a363bf2 Mon Sep 17 00:00:00 2001 From: Zulh <75463191+zulh-civo@users.noreply.github.com> Date: Fri, 13 Aug 2021 10:36:51 +0800 Subject: [PATCH] Mark IaaS password as sensitive (#56) --- civo/resource_instance.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/civo/resource_instance.go b/civo/resource_instance.go index 10814692..d9d06529 100644 --- a/civo/resource_instance.go +++ b/civo/resource_instance.go @@ -119,8 +119,9 @@ func resourceInstance() *schema.Resource { Computed: true, }, "initial_password": { - Type: schema.TypeString, - Computed: true, + Type: schema.TypeString, + Computed: true, + Sensitive: true, }, "private_ip": { Type: schema.TypeString,