Horje
making password sensitive/hide in terraform Code Example
making password sensitive/hide in terraform
#Making your Password Sensitive

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

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




Shell

Related
bash string interpolation Code Example bash string interpolation Code Example
openzeppelin install Code Example openzeppelin install Code Example
keytool list certs java Code Example keytool list certs java Code Example
zram raspberry pi Code Example zram raspberry pi Code Example
how to turn off mac display Code Example how to turn off mac display Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11