Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit c2e9b1f

Browse files
Add database_username, database_password, and database_name outputs for IAM user provisioning
1 parent 75dbee2 commit c2e9b1f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

outputs.tf

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,21 @@ output "tfe_autoscaling_group_name" {
141141
description = "The name of the autoscaling group for TFE instances."
142142
}
143143

144+
output "database_username" {
145+
value = local.database.username
146+
description = "The master username for the PostgreSQL database."
147+
sensitive = true
148+
}
149+
150+
output "database_password" {
151+
value = local.database.password
152+
description = "The master password for the PostgreSQL database."
153+
sensitive = true
154+
}
155+
156+
output "database_name" {
157+
value = local.database.name
158+
description = "The name of the PostgreSQL database."
159+
sensitive = true
160+
}
161+

0 commit comments

Comments
 (0)