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
Hi, with terraform v0.15.0 it give the next error:
Error: Output refers to sensitive values
│
│ on .terraform/modules/documentdb_cluster/outputs.tf line 1:
│ 1: output "master_username" {
│
│ Expressions used in outputs can only refer to sensitive values if the sensitive attribute is true.
module version: 0.13.0
Thanks!
The text was updated successfully, but these errors were encountered:
In file: .terraform/modules/documentdb_cluster/outputs.tf
add: sensitive = true
output "master_username" {
value = join("", aws_docdb_cluster.default.*.master_username)
description = "Username for the master DB user"
sensitive = true
}
Hi, with terraform
v0.15.0
it give the next error:module version:
0.13.0
Thanks!
The text was updated successfully, but these errors were encountered: