outputs.tf (16 lines of code) (raw):
output "location" {
description = "The Azure deployment region."
value = var.location
}
# 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" {
description = "This is the full output for the resource."
value = azurerm_proximity_placement_group.this
}
output "resource_group_name" {
description = "The name of the resource group."
value = var.resource_group_name
}
output "resource_id" {
description = "This id of the resource."
value = azurerm_proximity_placement_group.this.id
}