1 changed file
outputs.tf | ||
Add comment 17 # ============================================================================ #
Add comment 18
Add comment 19 output "db-password" {
Add comment 20 Minus value = aws_db_instance.db.password
Add comment 20 Plus value = aws_db_instance.db.password
Add comment 21 description = "Password for database"
Add comment 22 Minus sensitive = true # won't be output in Terminal but will be in state file
Add comment 22 Plus sensitive = true # won't be output in Terminal but will be in state file
Add comment 23 }
Add comment 24