From 23cbaefe112d037a3eb2addd1d0b0ed9b4be8a3c Mon Sep 17 00:00:00 2001 From: Phil Fenstermacher Date: Thu, 11 Nov 2021 19:00:50 -0500 Subject: [PATCH] Remove sensitive flag from SSL certificate An SSL certificate is generally considered not a secret since it's transmitted as part of setting up an HTTPS connection. Marking the value here as sensitive creates issues in certain workflows. Note: reverts a small part of #209 --- bigip/resource_bigip_ssl_certificate.go | 1 - 1 file changed, 1 deletion(-) diff --git a/bigip/resource_bigip_ssl_certificate.go b/bigip/resource_bigip_ssl_certificate.go index 6f3f04518..9d8542390 100644 --- a/bigip/resource_bigip_ssl_certificate.go +++ b/bigip/resource_bigip_ssl_certificate.go @@ -34,7 +34,6 @@ func resourceBigipSslCertificate() *schema.Resource { "content": { Type: schema.TypeString, Required: true, - Sensitive: true, ForceNew: true, Description: "Content of certificate on Disk", },