Added sample for a SQL private endpoint for Azure Private Link
This commit is contained in:
28
quickstart/201-private-link-sql-database/outputs.tf
Normal file
28
quickstart/201-private-link-sql-database/outputs.tf
Normal file
@ -0,0 +1,28 @@
|
||||
output "resource_group_name" {
|
||||
description = "The name of the created resource group."
|
||||
value = azurerm_resource_group.rg.name
|
||||
}
|
||||
|
||||
output "virtual_network_name" {
|
||||
description = "The name of the created virtual network."
|
||||
value = azurerm_virtual_network.my_terraform_network.name
|
||||
}
|
||||
|
||||
output "subnet_name_1" {
|
||||
description = "The name of the created subnet 1."
|
||||
value = azurerm_subnet.my_terraform_subnet_1.name
|
||||
}
|
||||
|
||||
output "nat_gateway"{
|
||||
description = "The name of the created NAT gateway."
|
||||
value = azurerm_nat_gateway.my_nat_gateway.id
|
||||
}
|
||||
|
||||
output "sql_server_name" {
|
||||
value = azurerm_mssql_server.server.name
|
||||
}
|
||||
|
||||
output "admin_password" {
|
||||
sensitive = true
|
||||
value = local.admin_password
|
||||
}
|
Reference in New Issue
Block a user