Skip to content

Commit

Permalink
Add MSSQL Server SA password as output
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragemil committed Feb 3, 2025
1 parent e3681bf commit 07cb0a2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mssql_server/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ output "mssql_server_fqnd" {
value = azurerm_mssql_server.main.fully_qualified_domain_name
}

output "mssql_server_sa_password" {
value = random_password.db_sa.result
sensitive = true
}

output "mssql_databases" {
value = azurerm_mssql_database.databases
}

0 comments on commit 07cb0a2

Please sign in to comment.