outputs.tf (8 lines of code) (raw):
# TODO: insert outputs here.
# Module owners should include the full resource via a 'resource' output
# https://azure.github.io/Azure-Verified-Modules/specs/terraform/#id-tffr2---category-outputs---additional-terraform-outputs
output "resource" {
value = azurerm_this_module_resource.this
description = "This is the full output for the resource."
}
output "private_endpoints" {
value = azurerm_private_endpoint.this
description = "A map of private endpoints. The map key is the supplied input to var.private_endpoints. The map value is the entire azurerm_private_endpoint resource."
}