Skip to content

Commit a78de1d

Browse files
authored
Merge pull request #4 from kumarvna/develop
adding terraform v0.15 support
2 parents a18de80 + 18fe6f0 commit a78de1d

File tree

2 files changed

+18
-14
lines changed
  • examples
    • SQL_DB_Using_Geo-replication_with_Auto-Failover_Groups_and_Private_Endpoints
    • SQL_DB_Using_Geo-replication_with_Auto-Failover_Groups

2 files changed

+18
-14
lines changed

examples/SQL_DB_Using_Geo-replication_with_Auto-Failover_Groups/output.tf

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
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"
33
value = module.mssql-server.resource_group_name
44
}
55

66
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"
88
value = module.mssql-server.resource_group_location
99
}
1010

@@ -24,7 +24,7 @@ output "primary_sql_server_id" {
2424
}
2525

2626
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"
2828
value = module.mssql-server.primary_sql_server_fqdn
2929
}
3030

@@ -34,18 +34,20 @@ output "secondary_sql_server_id" {
3434
}
3535

3636
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"
3838
value = module.mssql-server.secondary_sql_server_fqdn
3939
}
4040

4141
output "sql_server_admin_user" {
4242
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
4445
}
4546

4647
output "sql_server_admin_password" {
4748
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
4951
}
5052

5153
output "sql_database_id" {
@@ -61,4 +63,4 @@ output "sql_database_name" {
6163
output "sql_failover_group_id" {
6264
description = "A failover group of databases on a collection of Azure SQL servers."
6365
value = module.mssql-server.sql_failover_group_id
64-
}
66+
}

examples/SQL_DB_Using_Geo-replication_with_Auto-Failover_Groups_and_Private_Endpoints/output.tf

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
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"
33
value = module.mssql-server.resource_group_name
44
}
55

66
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"
88
value = module.mssql-server.resource_group_location
99
}
1010

@@ -24,7 +24,7 @@ output "primary_sql_server_id" {
2424
}
2525

2626
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"
2828
value = module.mssql-server.primary_sql_server_fqdn
2929
}
3030

@@ -34,18 +34,20 @@ output "secondary_sql_server_id" {
3434
}
3535

3636
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"
3838
value = module.mssql-server.secondary_sql_server_fqdn
3939
}
4040

4141
output "sql_server_admin_user" {
4242
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
4445
}
4546

4647
output "sql_server_admin_password" {
4748
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
4951
}
5052

5153
output "sql_database_id" {
@@ -85,7 +87,7 @@ output "primary_sql_server_private_endpoint_ip" {
8587

8688
output "primary_sql_server_private_endpoint_fqdn" {
8789
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
8991
}
9092

9193
output "secondary_sql_server_private_endpoint_ip" {

0 commit comments

Comments
 (0)