Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

making password sensitive/hide in terraform

#Making your Password Sensitive

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

output "db_password" {
  value     = local.db_password
  sensitive = true
}
 
PREVIOUS NEXT
Tagged: #making #password #terraform
ADD COMMENT
Topic
Name
5+5 =