1
1
output "resource_group_name" {
2
- description = " The name of the resource group in which resources are created"
2
+ description = " The name of the resource group in which resources are created"
3
3
value = module. mssql-server . resource_group_name
4
4
}
5
5
6
6
output "resource_group_location" {
7
- description = " The location of the resource group in which resources are created"
7
+ description = " The location of the resource group in which resources are created"
8
8
value = module. mssql-server . resource_group_location
9
9
}
10
10
@@ -24,7 +24,7 @@ output "primary_sql_server_id" {
24
24
}
25
25
26
26
output "primary_sql_server_fqdn" {
27
- description = " The fully qualified domain name of the primary Azure SQL Server"
27
+ description = " The fully qualified domain name of the primary Azure SQL Server"
28
28
value = module. mssql-server . primary_sql_server_fqdn
29
29
}
30
30
@@ -34,18 +34,20 @@ output "secondary_sql_server_id" {
34
34
}
35
35
36
36
output "secondary_sql_server_fqdn" {
37
- description = " The fully qualified domain name of the secondary Azure SQL Server"
37
+ description = " The fully qualified domain name of the secondary Azure SQL Server"
38
38
value = module. mssql-server . secondary_sql_server_fqdn
39
39
}
40
40
41
41
output "sql_server_admin_user" {
42
42
description = " SQL database administrator login id"
43
- value = module. mssql-server . sql_server_admin_user
43
+ value = module. mssql-server . sql_server_admin_user
44
+ sensitive = true
44
45
}
45
46
46
47
output "sql_server_admin_password" {
47
48
description = " SQL database administrator login password"
48
- value = module. mssql-server . sql_server_admin_password
49
+ value = module. mssql-server . sql_server_admin_password
50
+ sensitive = true
49
51
}
50
52
51
53
output "sql_database_id" {
@@ -85,7 +87,7 @@ output "primary_sql_server_private_endpoint_ip" {
85
87
86
88
output "primary_sql_server_private_endpoint_fqdn" {
87
89
description = " Priamary SQL server private endpoint IPv4 Addresses "
88
- value = module. mssql-server . primary_sql_server_private_endpoint_fqdn
90
+ value = module. mssql-server . primary_sql_server_private_endpoint_fqdn
89
91
}
90
92
91
93
output "secondary_sql_server_private_endpoint_ip" {
0 commit comments