HelenD
0
Q:

making password sensitive/hide in terraform

#Making your Password Sensitive

locals {
  db_password = {
    admin = "mypassword"
  }
}

output "db_password" {
  value     = local.db_password
  sensitive = true
}
0

New to Communities?

Join the community