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
Error: Output refers to sensitive values
│
│ on .terraform/modules/kubernetes/output.tf line 32:
│ 32: output "kube_config_raw" {
│
│ Expressions used in outputs can only refer to sensitive values if the sensitive attribute is true.
should azurerm_kubernetes_cluster.aks.kube_admin_config_raw be assigned to a variable with a sensitive attribute before being outputted?
The text was updated successfully, but these errors were encountered:
The error suggests it's a bug/oversight in our code here. This output resource should have sensitive = true. At least that's what the error is saying (the sensitive argument is supported not only in input variables, but also in outputs).
should
azurerm_kubernetes_cluster.aks.kube_admin_config_raw
be assigned to a variable with a sensitive attribute before being outputted?The text was updated successfully, but these errors were encountered: