Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions arm/Microsoft.Compute/availabilitySets/deploy.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ module availabilitySet_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, i
}
}]

@description('The resource group the availability set was deployed into')
@description('The name of the availability set')
output name string = availabilitySet.name

@description('The resource ID of the availability set')
output resourceId string = availabilitySet.id

@description('The name of the availability set')
@description('The resource group the availability set was deployed into')
output resourceGroupName string = resourceGroup().name
4 changes: 2 additions & 2 deletions arm/Microsoft.Compute/availabilitySets/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ Tag names and tag values can be provided as needed. A tag can be left without a

| Output Name | Type | Description |
| :-- | :-- | :-- |
| `name` | string | The resource group the availability set was deployed into |
| `resourceGroupName` | string | The name of the availability set |
| `name` | string | The name of the availability set |
| `resourceGroupName` | string | The resource group the availability set was deployed into |
| `resourceId` | string | The resource ID of the availability set |

## Template references
Expand Down