-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Description
Description
What is the rationale behind declaring these as sensitive output?
terraform-azurerm-db-sql/outputs.tf
Lines 1 to 11 in 29ada62
| output "resource" { | |
| description = "SQL Server resource object." | |
| value = azurerm_mssql_server.main | |
| sensitive = true | |
| } | |
| output "administrator_login" { | |
| description = "SQL Administrator login." | |
| value = var.administrator_login | |
| sensitive = true | |
| } |
The PostgreSQL module does not declare those as sensitive:
- https://github.com/claranet/terraform-azurerm-db-postgresql-flexible/blob/f761227e666f7391d88c3dfdcb39f7371834a7b3/outputs.tf#L1-L4
- https://github.com/claranet/terraform-azurerm-db-postgresql-flexible/blob/f761227e666f7391d88c3dfdcb39f7371834a7b3/outputs.tf#L41-L44
It would be helpful if both modules try to keep unified and balanced interface, I think.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request