You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: fixed bug which occrued when not provisioning a KMIP certificate but an adapter is created which attempts to index a null value. As part of this fix the kmip input variable has been marked as "sensitive" since it can contain a certificate value (#657)
Copy file name to clipboardExpand all lines: main.tf
+19-5
Original file line number
Diff line number
Diff line change
@@ -38,32 +38,46 @@ locals {
38
38
# tflint-ignore: terraform_unused_declarations
39
39
kmip_root_key_validation=(length(var.kmip) >0&& var.standard_key) ?tobool("When providing a value for `kmip`, the key being created must be a root key.") :true
Copy file name to clipboardExpand all lines: variables.tf
+1
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@ variable "kmip" {
66
66
certificate =string
67
67
})))
68
68
}))
69
+
sensitive=true
69
70
description="Allows a key to utilize the key management interoperability protocol (KMIP), for more information see https://cloud.ibm.com/docs/key-protect?topic=key-protect-kmip"
0 commit comments