Skip to content

Commit

Permalink
Fixing plurality of output names
Browse files Browse the repository at this point in the history
  • Loading branch information
TomArcherMsft authored and lonegunmanb committed Feb 8, 2024
1 parent d80c430 commit 6e33ab9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ output "api_outputs" {
}
}

output "product_ids" {
output "product_id" {
description = "The ID of the Product created"
value = azurerm_api_management_product.product.id
}

output "product_api_ids" {
output "product_api_id" {
description = "The ID of the Product/API association created"
value = azurerm_api_management_product_api.product_api.id
}

output "product_group_ids" {
output "product_group_id" {
description = "The ID of the Product/Group association created"
value = azurerm_api_management_product_group.product_group.id
}
}

0 comments on commit 6e33ab9

Please sign in to comment.