From 2ef7ed609d54d504ec2a48bc2e1d07a7d29f286b Mon Sep 17 00:00:00 2001 From: MrMCake Date: Fri, 21 Jan 2022 00:15:13 +0100 Subject: [PATCH] Updated outputs for namespace [c], [d], [e], [h] --- arm/Microsoft.CognitiveServices/accounts/deploy.bicep | 8 ++++---- arm/Microsoft.CognitiveServices/accounts/readme.md | 10 +++++----- arm/Microsoft.Compute/availabilitySets/deploy.bicep | 6 +++--- arm/Microsoft.Compute/availabilitySets/readme.md | 8 ++++---- .../.bicep/nested_kvAccessPolicy.bicep | 6 +++--- arm/Microsoft.Compute/diskEncryptionSets/deploy.bicep | 6 +++--- arm/Microsoft.Compute/diskEncryptionSets/readme.md | 8 ++++---- arm/Microsoft.Compute/galleries/deploy.bicep | 6 +++--- arm/Microsoft.Compute/galleries/images/deploy.bicep | 6 +++--- arm/Microsoft.Compute/galleries/images/readme.md | 8 ++++---- arm/Microsoft.Compute/galleries/readme.md | 8 ++++---- arm/Microsoft.Compute/images/deploy.bicep | 6 +++--- arm/Microsoft.Compute/images/readme.md | 8 ++++---- .../proximityPlacementGroups/deploy.bicep | 6 +++--- .../proximityPlacementGroups/readme.md | 8 ++++---- .../virtualMachineScaleSets/deploy.bicep | 10 ++++++---- .../virtualMachineScaleSets/extensions/deploy.bicep | 6 +++--- .../virtualMachineScaleSets/extensions/readme.md | 6 +++--- .../virtualMachineScaleSets/readme.md | 8 ++++---- arm/Microsoft.Consumption/budgets/deploy.bicep | 4 ++-- arm/Microsoft.Consumption/budgets/readme.md | 4 ++-- .../containerGroups/deploy.bicep | 8 ++++---- .../containerGroups/readme.md | 8 ++++---- .../registries/deploy.bicep | 8 ++++---- arm/Microsoft.ContainerRegistry/registries/readme.md | 10 +++++----- .../managedClusters/agentPools/deploy.bicep | 6 +++--- .../managedClusters/agentPools/readme.md | 6 +++--- .../managedClusters/deploy.bicep | 6 +++--- .../managedClusters/readme.md | 8 ++++---- arm/Microsoft.DataFactory/factories/deploy.bicep | 6 +++--- .../factories/integrationRuntime/deploy.bicep | 6 +++--- .../factories/integrationRuntime/readme.md | 6 +++--- .../factories/managedVirtualNetwork/deploy.bicep | 6 +++--- .../factories/managedVirtualNetwork/readme.md | 6 +++--- arm/Microsoft.DataFactory/factories/readme.md | 8 ++++---- arm/Microsoft.Databricks/workspaces/deploy.bicep | 8 +++++--- arm/Microsoft.Databricks/workspaces/readme.md | 8 ++++---- .../applicationgroups/applications/deploy.bicep | 4 ++-- .../applicationgroups/applications/readme.md | 4 ++-- .../applicationgroups/deploy.bicep | 6 +++--- .../applicationgroups/readme.md | 8 ++++---- .../hostpools/deploy.bicep | 6 +++--- .../hostpools/readme.md | 8 ++++---- .../workspaces/deploy.bicep | 6 +++--- .../workspaces/readme.md | 8 ++++---- arm/Microsoft.DocumentDB/databaseAccounts/deploy.bicep | 6 +++--- .../mongodbDatabases/collections/deploy.bicep | 6 +++--- .../mongodbDatabases/collections/readme.md | 6 +++--- .../databaseAccounts/mongodbDatabases/deploy.bicep | 6 +++--- .../databaseAccounts/mongodbDatabases/readme.md | 6 +++--- arm/Microsoft.DocumentDB/databaseAccounts/readme.md | 8 ++++---- .../sqlDatabases/containers/deploy.bicep | 6 +++--- .../databaseAccounts/sqlDatabases/containers/readme.md | 6 +++--- .../databaseAccounts/sqlDatabases/deploy.bicep | 6 +++--- .../databaseAccounts/sqlDatabases/readme.md | 6 +++--- arm/Microsoft.EventGrid/topics/deploy.bicep | 6 +++--- arm/Microsoft.EventGrid/topics/readme.md | 8 ++++---- .../namespaces/authorizationRules/deploy.bicep | 6 +++--- .../namespaces/authorizationRules/readme.md | 6 +++--- arm/Microsoft.EventHub/namespaces/deploy.bicep | 8 +++----- .../namespaces/disasterRecoveryConfigs/deploy.bicep | 6 +++--- .../namespaces/disasterRecoveryConfigs/readme.md | 6 +++--- .../eventhubs/authorizationRules/deploy.bicep | 6 +++--- .../namespaces/eventhubs/authorizationRules/readme.md | 6 +++--- .../namespaces/eventhubs/consumergroups/deploy.bicep | 6 +++--- .../namespaces/eventhubs/consumergroups/readme.md | 6 +++--- .../namespaces/eventhubs/deploy.bicep | 6 +++--- arm/Microsoft.EventHub/namespaces/eventhubs/readme.md | 8 ++++---- arm/Microsoft.EventHub/namespaces/readme.md | 6 +++--- arm/Microsoft.HealthBot/healthBots/deploy.bicep | 6 +++--- arm/Microsoft.HealthBot/healthBots/readme.md | 8 ++++---- 71 files changed, 239 insertions(+), 237 deletions(-) diff --git a/arm/Microsoft.CognitiveServices/accounts/deploy.bicep b/arm/Microsoft.CognitiveServices/accounts/deploy.bicep index bd8040908a..41343fb13c 100644 --- a/arm/Microsoft.CognitiveServices/accounts/deploy.bicep +++ b/arm/Microsoft.CognitiveServices/accounts/deploy.bicep @@ -222,16 +222,16 @@ module cognitiveServices_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, }] @description('The name of the cognitive services account') -output cognitiveServicesName string = cognitiveServices.name +output name string = cognitiveServices.name @description('The resource ID of the cognitive services account') -output cognitiveServicesResourceId string = cognitiveServices.id +output resourceId string = cognitiveServices.id @description('The resource group the cognitive services account was deployed into') -output cognitiveServicesResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The service endpoint of the cognitive services account') -output cognitiveServicesEndpoint string = cognitiveServices.properties.endpoint +output endpoint string = cognitiveServices.properties.endpoint @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(cognitiveServices.identity, 'principalId') ? cognitiveServices.identity.principalId : '' diff --git a/arm/Microsoft.CognitiveServices/accounts/readme.md b/arm/Microsoft.CognitiveServices/accounts/readme.md index 025c3d9b38..0868c93698 100644 --- a/arm/Microsoft.CognitiveServices/accounts/readme.md +++ b/arm/Microsoft.CognitiveServices/accounts/readme.md @@ -187,10 +187,10 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `cognitiveServicesEndpoint` | string | The service endpoint of the cognitive services account | -| `cognitiveServicesName` | string | The name of the cognitive services account | -| `cognitiveServicesResourceGroup` | string | The resource group the cognitive services account was deployed into | -| `cognitiveServicesResourceId` | string | The resource ID of the cognitive services account | +| `endpoint` | string | The service endpoint of the cognitive services account | +| `name` | string | The name of the cognitive services account | +| `resourceGroupName` | string | The resource group the cognitive services account was deployed into | +| `resourceId` | string | The resource ID of the cognitive services account | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Considerations @@ -205,4 +205,4 @@ You can specify multiple user assigned identities to a resource by providing add - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) - [Privateendpoints](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-05-01/privateEndpoints) - [Privateendpoints/Privatednszonegroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-02-01/privateEndpoints/privateDnsZoneGroups) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.Compute/availabilitySets/deploy.bicep b/arm/Microsoft.Compute/availabilitySets/deploy.bicep index 5b89a2a418..eb668cc85e 100644 --- a/arm/Microsoft.Compute/availabilitySets/deploy.bicep +++ b/arm/Microsoft.Compute/availabilitySets/deploy.bicep @@ -71,10 +71,10 @@ module availabilitySet_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, i }] @description('The resource group the availability set was deployed into') -output availabilitySetResourceName string = availabilitySet.name +output name string = availabilitySet.name @description('The resource ID of the availability set') -output availabilitySetResourceId string = availabilitySet.id +output resourceId string = availabilitySet.id @description('The name of the availability set') -output availabilitySetResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Compute/availabilitySets/readme.md b/arm/Microsoft.Compute/availabilitySets/readme.md index ac8a3d356c..2e8b9ad15f 100644 --- a/arm/Microsoft.Compute/availabilitySets/readme.md +++ b/arm/Microsoft.Compute/availabilitySets/readme.md @@ -68,12 +68,12 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `availabilitySetResourceGroup` | string | The name of the availability set | -| `availabilitySetResourceId` | string | The resource ID of the availability set | -| `availabilitySetResourceName` | string | The resource group the availability set was deployed into | +| `name` | string | The resource group the availability set was deployed into | +| `resourceGroupName` | string | The name of the availability set | +| `resourceId` | string | The resource ID of the availability set | ## Template references - [Availabilitysets](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2021-04-01/availabilitySets) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.Compute/diskEncryptionSets/.bicep/nested_kvAccessPolicy.bicep b/arm/Microsoft.Compute/diskEncryptionSets/.bicep/nested_kvAccessPolicy.bicep index 3f8c479dc1..64765196a8 100644 --- a/arm/Microsoft.Compute/diskEncryptionSets/.bicep/nested_kvAccessPolicy.bicep +++ b/arm/Microsoft.Compute/diskEncryptionSets/.bicep/nested_kvAccessPolicy.bicep @@ -27,10 +27,10 @@ resource policies 'Microsoft.KeyVault/vaults/accessPolicies@2021-06-01-preview' } @description('The name of the resource group the access policies assignment was created in.') -output accessPolicyResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the access policies assignment') -output accessPolicyName string = policies.name +output name string = policies.name @description('The resource ID of the access policies assignment') -output accessPolicyResourceId string = policies.id +output resourceId string = policies.id diff --git a/arm/Microsoft.Compute/diskEncryptionSets/deploy.bicep b/arm/Microsoft.Compute/diskEncryptionSets/deploy.bicep index 6039850e71..2d543c10cd 100644 --- a/arm/Microsoft.Compute/diskEncryptionSets/deploy.bicep +++ b/arm/Microsoft.Compute/diskEncryptionSets/deploy.bicep @@ -87,13 +87,13 @@ module diskEncryptionSet_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, }] @description('The resource ID of the disk encryption set') -output diskEncryptionSetResourceId string = diskEncryptionSet.id +output resourceId string = diskEncryptionSet.id @description('The name of the disk encryption set') -output diskEncryptionSetName string = diskEncryptionSet.name +output name string = diskEncryptionSet.name @description('The resource group the disk encryption set was deployed into') -output diskEncryptionResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the disk encryption set') output systemAssignedPrincipalId string = diskEncryptionSet.identity.principalId diff --git a/arm/Microsoft.Compute/diskEncryptionSets/readme.md b/arm/Microsoft.Compute/diskEncryptionSets/readme.md index 564d13bf55..b365fe166d 100644 --- a/arm/Microsoft.Compute/diskEncryptionSets/readme.md +++ b/arm/Microsoft.Compute/diskEncryptionSets/readme.md @@ -67,14 +67,14 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `diskEncryptionResourceGroup` | string | The resource group the disk encryption set was deployed into | -| `diskEncryptionSetName` | string | The name of the disk encryption set | -| `diskEncryptionSetResourceId` | string | The resource ID of the disk encryption set | | `keyVaultName` | string | The name of the key vault with the disk encryption key | +| `name` | string | The name of the disk encryption set | +| `resourceGroupName` | string | The resource group the disk encryption set was deployed into | +| `resourceId` | string | The resource ID of the disk encryption set | | `systemAssignedPrincipalId` | string | The principal ID of the disk encryption set | ## Template references - [Diskencryptionsets](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2021-04-01/diskEncryptionSets) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) - [Vaults/Accesspolicies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.KeyVault/2021-06-01-preview/vaults/accessPolicies) diff --git a/arm/Microsoft.Compute/galleries/deploy.bicep b/arm/Microsoft.Compute/galleries/deploy.bicep index b315394af7..8e7140f091 100644 --- a/arm/Microsoft.Compute/galleries/deploy.bicep +++ b/arm/Microsoft.Compute/galleries/deploy.bicep @@ -92,10 +92,10 @@ module galleries_images 'images/deploy.bicep' = [for (image, index) in images: { }] @description('The resource ID of the deployed image gallery') -output galleryResourceId string = gallery.id +output resourceId string = gallery.id @description('The resource group of the deployed image gallery') -output galleryResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the deployed image gallery') -output galleryName string = gallery.name +output name string = gallery.name diff --git a/arm/Microsoft.Compute/galleries/images/deploy.bicep b/arm/Microsoft.Compute/galleries/images/deploy.bicep index 1b8d10d798..1fa86f131e 100644 --- a/arm/Microsoft.Compute/galleries/images/deploy.bicep +++ b/arm/Microsoft.Compute/galleries/images/deploy.bicep @@ -153,10 +153,10 @@ module galleryImage_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, inde }] @description('The resource group the image was deployed into') -output imageResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The resource ID of the image') -output imageResourceId string = image.id +output resourceId string = image.id @description('The name of the image') -output imageName string = image.name +output name string = image.name diff --git a/arm/Microsoft.Compute/galleries/images/readme.md b/arm/Microsoft.Compute/galleries/images/readme.md index 9cddb56a9c..916fab525f 100644 --- a/arm/Microsoft.Compute/galleries/images/readme.md +++ b/arm/Microsoft.Compute/galleries/images/readme.md @@ -82,11 +82,11 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `imageName` | string | The name of the image | -| `imageResourceGroup` | string | The resource group the image was deployed into | -| `imageResourceId` | string | The resource ID of the image | +| `name` | string | The name of the image | +| `resourceGroupName` | string | The resource group the image was deployed into | +| `resourceId` | string | The resource ID of the image | ## Template references - [Galleries/Images](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2020-09-30/galleries/images) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.Compute/galleries/readme.md b/arm/Microsoft.Compute/galleries/readme.md index 10de8bbdbf..6086b7d95c 100644 --- a/arm/Microsoft.Compute/galleries/readme.md +++ b/arm/Microsoft.Compute/galleries/readme.md @@ -67,13 +67,13 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `galleryName` | string | The name of the deployed image gallery | -| `galleryResourceGroup` | string | The resource group of the deployed image gallery | -| `galleryResourceId` | string | The resource ID of the deployed image gallery | +| `name` | string | The name of the deployed image gallery | +| `resourceGroupName` | string | The resource group of the deployed image gallery | +| `resourceId` | string | The resource ID of the deployed image gallery | ## Template references - [Galleries](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2020-09-30/galleries) - [Galleries/Images](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2020-09-30/galleries/images) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.Compute/images/deploy.bicep b/arm/Microsoft.Compute/images/deploy.bicep index eb3a19bf7e..f17102d685 100644 --- a/arm/Microsoft.Compute/images/deploy.bicep +++ b/arm/Microsoft.Compute/images/deploy.bicep @@ -65,10 +65,10 @@ module image_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) in r }] @description('The resource ID of the image') -output imageResourceId string = image.id +output resourceId string = image.id @description('The resource group the image was deployed into') -output imageResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the image') -output imageName string = image.name +output name string = image.name diff --git a/arm/Microsoft.Compute/images/readme.md b/arm/Microsoft.Compute/images/readme.md index 87adf5b488..21c3e1a47f 100644 --- a/arm/Microsoft.Compute/images/readme.md +++ b/arm/Microsoft.Compute/images/readme.md @@ -68,11 +68,11 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `imageName` | string | The name of the image | -| `imageResourceGroup` | string | The resource group the image was deployed into | -| `imageResourceId` | string | The resource ID of the image | +| `name` | string | The name of the image | +| `resourceGroupName` | string | The resource group the image was deployed into | +| `resourceId` | string | The resource ID of the image | ## Template references - [Images](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2021-04-01/images) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.Compute/proximityPlacementGroups/deploy.bicep b/arm/Microsoft.Compute/proximityPlacementGroups/deploy.bicep index dadc3ec338..0c215b8fdb 100644 --- a/arm/Microsoft.Compute/proximityPlacementGroups/deploy.bicep +++ b/arm/Microsoft.Compute/proximityPlacementGroups/deploy.bicep @@ -61,10 +61,10 @@ module proximityPlacementGroup_rbac '.bicep/nested_rbac.bicep' = [for (roleAssig }] @description('The name of the proximity placement group') -output proximityPlacementGroupName string = proximityPlacementGroup.name +output name string = proximityPlacementGroup.name @description('The resourceId the proximity placement group') -output proximityPlacementGroupResourceId string = proximityPlacementGroup.id +output resourceId string = proximityPlacementGroup.id @description('The resource group the proximity placement group was deployed into') -output proximityPlacementGroupResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Compute/proximityPlacementGroups/readme.md b/arm/Microsoft.Compute/proximityPlacementGroups/readme.md index 781982c285..3f4fb20860 100644 --- a/arm/Microsoft.Compute/proximityPlacementGroups/readme.md +++ b/arm/Microsoft.Compute/proximityPlacementGroups/readme.md @@ -65,12 +65,12 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `proximityPlacementGroupName` | string | The name of the proximity placement group | -| `proximityPlacementGroupResourceGroup` | string | The resource group the proximity placement group was deployed into | -| `proximityPlacementGroupResourceId` | string | The resourceId the proximity placement group | +| `name` | string | The name of the proximity placement group | +| `resourceGroupName` | string | The resource group the proximity placement group was deployed into | +| `resourceId` | string | The resourceId the proximity placement group | ## Template references - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) - [Proximityplacementgroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2021-04-01/proximityPlacementGroups) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.Compute/virtualMachineScaleSets/deploy.bicep b/arm/Microsoft.Compute/virtualMachineScaleSets/deploy.bicep index 6e763584e7..4f82713c5c 100644 --- a/arm/Microsoft.Compute/virtualMachineScaleSets/deploy.bicep +++ b/arm/Microsoft.Compute/virtualMachineScaleSets/deploy.bicep @@ -347,7 +347,9 @@ resource vmss 'Microsoft.Compute/virtualMachineScaleSets@2021-04-01' = { identity: identity zones: availabilityZones properties: { - proximityPlacementGroup: !empty(proximityPlacementGroupName) ? json('{"id":"${resourceId('Microsoft.Compute/proximityPlacementGroups', proximityPlacementGroup.name)}"}') : null + proximityPlacementGroup: !empty(proximityPlacementGroupName) ? { + id: az.resourceId('Microsoft.Compute/proximityPlacementGroups', proximityPlacementGroup.name) + } : null upgradePolicy: { mode: upgradePolicyMode rollingUpgradePolicy: { @@ -615,13 +617,13 @@ module vmss_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) in ro }] @description('The resource ID of the virtual machine scale set') -output vmssResourceIds string = vmss.id +output resourceId string = vmss.id @description('The resource group of the virtual machine scale set') -output vmssResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the virtual machine scale set') -output vmssName string = vmss.name +output name string = vmss.name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(vmss.identity, 'principalId') ? vmss.identity.principalId : '' diff --git a/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/deploy.bicep b/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/deploy.bicep index f78d7bafd1..85d0e125da 100644 --- a/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/deploy.bicep +++ b/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/deploy.bicep @@ -61,10 +61,10 @@ resource extension 'Microsoft.Compute/virtualMachineScaleSets/extensions@2021-07 } @description('The name of the extension') -output extensionName string = extension.name +output name string = extension.name @description('The ResourceId of the extension') -output extensionResourceId string = extension.id +output resourceId string = extension.id @description('The name of the Resource Group the extension was created in.') -output extensionResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/readme.md b/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/readme.md index 8d2ef006ea..d0d65b2b7c 100644 --- a/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/readme.md +++ b/arm/Microsoft.Compute/virtualMachineScaleSets/extensions/readme.md @@ -29,9 +29,9 @@ This module deploys a virtual machine scale set extension. | Output Name | Type | Description | | :-- | :-- | :-- | -| `extensionName` | string | The name of the extension | -| `extensionResourceGroup` | string | The name of the Resource Group the extension was created in. | -| `extensionResourceId` | string | The Resource ID of the extension | +| `name` | string | The name of the extension | +| `resourceGroupName` | string | The name of the Resource Group the extension was created in. | +| `resourceId` | string | The ResourceId of the extension | ## Template references diff --git a/arm/Microsoft.Compute/virtualMachineScaleSets/readme.md b/arm/Microsoft.Compute/virtualMachineScaleSets/readme.md index 7a45e172be..40342ff615 100644 --- a/arm/Microsoft.Compute/virtualMachineScaleSets/readme.md +++ b/arm/Microsoft.Compute/virtualMachineScaleSets/readme.md @@ -416,16 +416,16 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | +| `name` | string | The name of the virtual machine scale set | +| `resourceGroupName` | string | The resource group of the virtual machine scale set | +| `resourceId` | string | The resource ID of the virtual machine scale set | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | -| `vmssName` | string | The name of the virtual machine scale set | -| `vmssResourceGroup` | string | The resource group of the virtual machine scale set | -| `vmssResourceIds` | string | The resource ID of the virtual machine scale set | ## Template references - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) - [Proximityplacementgroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2021-04-01/proximityPlacementGroups) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) - [Virtualmachinescalesets](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2021-04-01/virtualMachineScaleSets) - [Virtualmachinescalesets/Extensions](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Compute/2021-07-01/virtualMachineScaleSets/extensions) diff --git a/arm/Microsoft.Consumption/budgets/deploy.bicep b/arm/Microsoft.Consumption/budgets/deploy.bicep index c4f7565f26..e1784f25cb 100644 --- a/arm/Microsoft.Consumption/budgets/deploy.bicep +++ b/arm/Microsoft.Consumption/budgets/deploy.bicep @@ -80,10 +80,10 @@ resource budget 'Microsoft.Consumption/budgets@2019-05-01' = { } @description('The name of the budget') -output budgetName string = budget.name +output name string = budget.name @description('The resource ID of the budget') -output budgetResourceId string = budget.id +output resourceId string = budget.id @description('The subscription the budget was deployed into') output subscriptionName string = subscription().displayName diff --git a/arm/Microsoft.Consumption/budgets/readme.md b/arm/Microsoft.Consumption/budgets/readme.md index 9077a8fe4b..47cfa0b885 100644 --- a/arm/Microsoft.Consumption/budgets/readme.md +++ b/arm/Microsoft.Consumption/budgets/readme.md @@ -27,8 +27,8 @@ This module deploys budgets for subscriptions. | Output Name | Type | Description | | :-- | :-- | :-- | -| `budgetName` | string | The name of the budget | -| `budgetResourceId` | string | The resource ID of the budget | +| `name` | string | The name of the budget | +| `resourceId` | string | The resource ID of the budget | | `subscriptionName` | string | The subscription the budget was deployed into | ## Template references diff --git a/arm/Microsoft.ContainerInstance/containerGroups/deploy.bicep b/arm/Microsoft.ContainerInstance/containerGroups/deploy.bicep index d68894cf06..e91376ab5b 100644 --- a/arm/Microsoft.ContainerInstance/containerGroups/deploy.bicep +++ b/arm/Microsoft.ContainerInstance/containerGroups/deploy.bicep @@ -114,16 +114,16 @@ resource containergroup_lock 'Microsoft.Authorization/locks@2017-04-01' = if (lo } @description('The name of the container group') -output containerGroupName string = containergroup.name +output name string = containergroup.name @description('The resource ID of the container group') -output containerGroupResourceId string = containergroup.id +output resourceId string = containergroup.id @description('The resource group the container group was deployed into') -output containerGroupResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The IPv4 address of the container group') -output containerGroupIPv4Address string = containergroup.properties.ipAddress.ip +output iPv4Address string = containergroup.properties.ipAddress.ip @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(containergroup.identity, 'principalId') ? containergroup.identity.principalId : '' diff --git a/arm/Microsoft.ContainerInstance/containerGroups/readme.md b/arm/Microsoft.ContainerInstance/containerGroups/readme.md index 9b02b6d1f3..14e40fda56 100644 --- a/arm/Microsoft.ContainerInstance/containerGroups/readme.md +++ b/arm/Microsoft.ContainerInstance/containerGroups/readme.md @@ -82,10 +82,10 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `containerGroupIPv4Address` | string | The IPv4 address of the container group | -| `containerGroupName` | string | The name of the container group | -| `containerGroupResourceGroup` | string | The resource group the container group was deployed into | -| `containerGroupResourceId` | string | The resource ID of the container group | +| `iPv4Address` | string | The IPv4 address of the container group | +| `name` | string | The name of the container group | +| `resourceGroupName` | string | The resource group the container group was deployed into | +| `resourceId` | string | The resource ID of the container group | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references diff --git a/arm/Microsoft.ContainerRegistry/registries/deploy.bicep b/arm/Microsoft.ContainerRegistry/registries/deploy.bicep index 0b8c18e2bc..116f43733a 100644 --- a/arm/Microsoft.ContainerRegistry/registries/deploy.bicep +++ b/arm/Microsoft.ContainerRegistry/registries/deploy.bicep @@ -201,16 +201,16 @@ module registry_privateEndpoints '.bicep/nested_privateEndpoints.bicep' = [for ( }] @description('The Name of the Azure container registry.') -output acrName string = registry.name +output name string = registry.name @description('The reference to the Azure container registry.') -output acrLoginServer string = reference(registry.id, '2019-05-01').loginServer +output loginServer string = reference(registry.id, '2019-05-01').loginServer @description('The name of the Azure container registry.') -output acrResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The resource ID of the Azure container registry.') -output acrResourceId string = registry.id +output resourceId string = registry.id @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(registry.identity, 'principalId') ? registry.identity.principalId : '' diff --git a/arm/Microsoft.ContainerRegistry/registries/readme.md b/arm/Microsoft.ContainerRegistry/registries/readme.md index bfd25bdca8..9285b1f7ff 100644 --- a/arm/Microsoft.ContainerRegistry/registries/readme.md +++ b/arm/Microsoft.ContainerRegistry/registries/readme.md @@ -150,10 +150,10 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `acrLoginServer` | string | The reference to the Azure container registry. | -| `acrName` | string | The Name of the Azure container registry. | -| `acrResourceGroup` | string | The name of the Azure container registry. | -| `acrResourceId` | string | The resource ID of the Azure container registry. | +| `loginServer` | string | The reference to the Azure container registry. | +| `name` | string | The Name of the Azure container registry. | +| `resourceGroupName` | string | The name of the Azure container registry. | +| `resourceId` | string | The resource ID of the Azure container registry. | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references @@ -163,4 +163,4 @@ You can specify multiple user assigned identities to a resource by providing add - [Privateendpoints](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-02-01/privateEndpoints) - [Privateendpoints/Privatednszonegroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-02-01/privateEndpoints/privateDnsZoneGroups) - [Registries](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ContainerRegistry/2020-11-01-preview/registries) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep b/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep index 36ad2c3f61..e5c76a6d5b 100644 --- a/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep +++ b/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep @@ -226,10 +226,10 @@ resource agentPool 'Microsoft.ContainerService/managedClusters/agentPools@2021-0 } @description('The name of the agent pool') -output agentPoolName string = agentPool.name +output name string = agentPool.name @description('The resource ID of the agent pool') -output agentPoolResourceId string = agentPool.id +output resourceId string = agentPool.id @description('The resource group the agent pool was deployed into.') -output agentPoolResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md b/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md index cf74be9c86..af872ec00f 100644 --- a/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md +++ b/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md @@ -71,9 +71,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `agentPoolName` | string | The name of the agent pool | -| `agentPoolResourceGroup` | string | The resource group the agent pool was deployed into. | -| `agentPoolResourceId` | string | The resource ID of the agent pool | +| `name` | string | The name of the agent pool | +| `resourceGroupName` | string | The resource group the agent pool was deployed into. | +| `resourceId` | string | The resource ID of the agent pool | ## Template references diff --git a/arm/Microsoft.ContainerService/managedClusters/deploy.bicep b/arm/Microsoft.ContainerService/managedClusters/deploy.bicep index ff93a7a2a6..3d8abb13df 100644 --- a/arm/Microsoft.ContainerService/managedClusters/deploy.bicep +++ b/arm/Microsoft.ContainerService/managedClusters/deploy.bicep @@ -412,13 +412,13 @@ module managedCluster_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, in }] @description('The resource ID of the managed cluster') -output azureKubernetesServiceResourceId string = managedCluster.id +output resourceId string = managedCluster.id @description('The resource group the managed cluster was deployed into') -output azureKubernetesServiceResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the managed cluster') -output azureKubernetesServiceName string = managedCluster.name +output name string = managedCluster.name @description('The control plane FQDN of the managed cluster') output controlPlaneFQDN string = (aksClusterEnablePrivateCluster ? managedCluster.properties.privateFQDN : managedCluster.properties.fqdn) diff --git a/arm/Microsoft.ContainerService/managedClusters/readme.md b/arm/Microsoft.ContainerService/managedClusters/readme.md index 225b40261d..05c78d5ef5 100644 --- a/arm/Microsoft.ContainerService/managedClusters/readme.md +++ b/arm/Microsoft.ContainerService/managedClusters/readme.md @@ -199,10 +199,10 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `azureKubernetesServiceName` | string | The name of the managed cluster | -| `azureKubernetesServiceResourceGroup` | string | The resource group the managed cluster was deployed into | -| `azureKubernetesServiceResourceId` | string | The resource ID of the managed cluster | | `controlPlaneFQDN` | string | The control plane FQDN of the managed cluster | +| `name` | string | The name of the managed cluster | +| `resourceGroupName` | string | The resource group the managed cluster was deployed into | +| `resourceId` | string | The resource ID of the managed cluster | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references @@ -211,4 +211,4 @@ You can specify multiple user assigned identities to a resource by providing add - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) - [Managedclusters](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ContainerService/2021-07-01/managedClusters) - [Managedclusters/Agentpools](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ContainerService/2021-08-01/managedClusters/agentPools) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.DataFactory/factories/deploy.bicep b/arm/Microsoft.DataFactory/factories/deploy.bicep index 56ef5545c8..351ab9fded 100644 --- a/arm/Microsoft.DataFactory/factories/deploy.bicep +++ b/arm/Microsoft.DataFactory/factories/deploy.bicep @@ -202,13 +202,13 @@ module dataFactory_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index }] @description('The Name of the Azure Data Factory instance.') -output dataFactoryName string = dataFactory.name +output name string = dataFactory.name @description('The Resource ID of the Data factory.') -output dataFactoryResourceId string = dataFactory.id +output resourceId string = dataFactory.id @description('The name of the Resource Group with the Data factory.') -output dataFactoryResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(dataFactory.identity, 'principalId') ? dataFactory.identity.principalId : '' diff --git a/arm/Microsoft.DataFactory/factories/integrationRuntime/deploy.bicep b/arm/Microsoft.DataFactory/factories/integrationRuntime/deploy.bicep index 86f19b1f17..d1dda4351f 100644 --- a/arm/Microsoft.DataFactory/factories/integrationRuntime/deploy.bicep +++ b/arm/Microsoft.DataFactory/factories/integrationRuntime/deploy.bicep @@ -45,10 +45,10 @@ resource integrationRuntime 'Microsoft.DataFactory/factories/integrationRuntimes } @description('The name of the Resource Group the Integration Runtime was created in.') -output integrationRuntimeResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the Integration Runtime.') -output integrationRuntimeName string = integrationRuntime.name +output name string = integrationRuntime.name @description('The resource ID of the Integration Runtime.') -output integrationRuntimeResourceId string = integrationRuntime.id +output resourceId string = integrationRuntime.id diff --git a/arm/Microsoft.DataFactory/factories/integrationRuntime/readme.md b/arm/Microsoft.DataFactory/factories/integrationRuntime/readme.md index a5cea90237..947227aaeb 100644 --- a/arm/Microsoft.DataFactory/factories/integrationRuntime/readme.md +++ b/arm/Microsoft.DataFactory/factories/integrationRuntime/readme.md @@ -36,9 +36,9 @@ This module deploys a Managed or Self-Hosted Integration Runtime for an Azure Da | Output Name | Type | Description | | :-- | :-- | :-- | -| `integrationRuntimeName` | string | The name of the Integration Runtime. | -| `integrationRuntimeResourceGroup` | string | The name of the Resource Group the Integration Runtime was created in. | -| `integrationRuntimeResourceId` | string | The resource ID of the Integration Runtime. | +| `name` | string | The name of the Integration Runtime. | +| `resourceGroupName` | string | The name of the Resource Group the Integration Runtime was created in. | +| `resourceId` | string | The resource ID of the Integration Runtime. | ## Template references diff --git a/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/deploy.bicep b/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/deploy.bicep index d7fb66b938..cac060cee4 100644 --- a/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/deploy.bicep +++ b/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/deploy.bicep @@ -23,10 +23,10 @@ resource managedVirtualNetwork 'Microsoft.DataFactory/factories/managedVirtualNe } @description('The name of the Resource Group the Managed Virtual Network was created in.') -output managedVirtualNetworkResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the Managed Virtual Network.') -output managedVirtualNetworkName string = managedVirtualNetwork.name +output name string = managedVirtualNetwork.name @description('The resource ID of the Managed Virtual Network.') -output managedVirtualNetworkResourceId string = managedVirtualNetwork.id +output resourceId string = managedVirtualNetwork.id diff --git a/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/readme.md b/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/readme.md index 41b63992bd..2e8e348dd1 100644 --- a/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/readme.md +++ b/arm/Microsoft.DataFactory/factories/managedVirtualNetwork/readme.md @@ -20,9 +20,9 @@ This module deploys a Managed Virtual Network for an Azure Data Factory | Output Name | Type | Description | | :-- | :-- | :-- | -| `managedVirtualNetworkName` | string | The name of the Managed Virtual Network. | -| `managedVirtualNetworkResourceGroup` | string | The name of the Resource Group the Managed Virtual Network was created in. | -| `managedVirtualNetworkResourceId` | string | The resource ID of the Managed Virtual Network. | +| `name` | string | The name of the Managed Virtual Network. | +| `resourceGroupName` | string | The name of the Resource Group the Managed Virtual Network was created in. | +| `resourceId` | string | The resource ID of the Managed Virtual Network. | ## Template references diff --git a/arm/Microsoft.DataFactory/factories/readme.md b/arm/Microsoft.DataFactory/factories/readme.md index 78ec8ec99b..7d9c218369 100644 --- a/arm/Microsoft.DataFactory/factories/readme.md +++ b/arm/Microsoft.DataFactory/factories/readme.md @@ -97,9 +97,9 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `dataFactoryName` | string | The Name of the Azure Data Factory instance. | -| `dataFactoryResourceGroup` | string | The name of the Resource Group with the Data factory. | -| `dataFactoryResourceId` | string | The Resource ID of the Data factory. | +| `name` | string | The Name of the Azure Data Factory instance. | +| `resourceGroupName` | string | The name of the Resource Group with the Data factory. | +| `resourceId` | string | The Resource ID of the Data factory. | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references @@ -109,4 +109,4 @@ You can specify multiple user assigned identities to a resource by providing add - [Factories/Integrationruntimes](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DataFactory/2018-06-01/factories/integrationRuntimes) - [Factories/Managedvirtualnetworks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DataFactory/2018-06-01/factories/managedVirtualNetworks) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.Databricks/workspaces/deploy.bicep b/arm/Microsoft.Databricks/workspaces/deploy.bicep index 369173234e..ca2857d4c7 100644 --- a/arm/Microsoft.Databricks/workspaces/deploy.bicep +++ b/arm/Microsoft.Databricks/workspaces/deploy.bicep @@ -139,8 +139,10 @@ module workspace_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) }] @description('The name of the deployed databricks workspace') -output databrickName string = workspace.name +output name string = workspace.name + @description('The resource ID of the deployed databricks workspace') -output databrickResourceId string = workspace.id +output resourceId string = workspace.id + @description('The resource group of the deployed databricks workspace') -output databrickResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Databricks/workspaces/readme.md b/arm/Microsoft.Databricks/workspaces/readme.md index 44370b931f..6babdef89b 100644 --- a/arm/Microsoft.Databricks/workspaces/readme.md +++ b/arm/Microsoft.Databricks/workspaces/readme.md @@ -105,13 +105,13 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `databrickName` | string | The name of the deployed databricks workspace | -| `databrickResourceGroup` | string | The resource group of the deployed databricks workspace | -| `databrickResourceId` | string | The resource ID of the deployed databricks workspace | +| `name` | string | The name of the deployed databricks workspace | +| `resourceGroupName` | string | The resource group of the deployed databricks workspace | +| `resourceId` | string | The resource ID of the deployed databricks workspace | ## Template references - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) - [Workspaces](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Databricks/2018-04-01/workspaces) diff --git a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep index 65e5f5de61..c2f7a8d0c7 100644 --- a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep +++ b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep @@ -64,7 +64,7 @@ resource application 'Microsoft.DesktopVirtualization/applicationGroups/applicat output applicationResourceIds string = application.id @sys.description('The name of the Resource Group the AVD Application was created in.') -output applicationResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @sys.description('The Name of the Application Group to register the Application in.') -output appGroupName string = appGroupName +output name string = appGroupName diff --git a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md index 1854822805..be7ede508f 100644 --- a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md +++ b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md @@ -28,9 +28,9 @@ This module deploys AVD Applications. | Output Name | Type | Description | | :-- | :-- | :-- | -| `appGroupName` | string | The Name of the Application Group to register the Application in. | -| `applicationResourceGroup` | string | The name of the Resource Group the AVD Application was created in. | | `applicationResourceIds` | string | The resource ID of the deployed Application. | +| `name` | string | The Name of the Application Group to register the Application in. | +| `resourceGroupName` | string | The name of the Resource Group the AVD Application was created in. | ## Template references diff --git a/arm/Microsoft.DesktopVirtualization/applicationgroups/deploy.bicep b/arm/Microsoft.DesktopVirtualization/applicationgroups/deploy.bicep index af8cc7b32e..12a71b1416 100644 --- a/arm/Microsoft.DesktopVirtualization/applicationgroups/deploy.bicep +++ b/arm/Microsoft.DesktopVirtualization/applicationgroups/deploy.bicep @@ -147,10 +147,10 @@ module appGroup_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) i }] @sys.description('The resource ID of the AVD application group') -output appGroupResourceId string = appGroup.id +output resourceId string = appGroup.id @sys.description('The resource group the AVD application group was deployed into') -output appGroupResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @sys.description('The name of the AVD application group') -output appGroupName string = appGroup.name +output name string = appGroup.name diff --git a/arm/Microsoft.DesktopVirtualization/applicationgroups/readme.md b/arm/Microsoft.DesktopVirtualization/applicationgroups/readme.md index c02c89d540..bd0bb9b9df 100644 --- a/arm/Microsoft.DesktopVirtualization/applicationgroups/readme.md +++ b/arm/Microsoft.DesktopVirtualization/applicationgroups/readme.md @@ -77,9 +77,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `appGroupName` | string | The name of the AVD application group | -| `appGroupResourceGroup` | string | The resource group the AVD application group was deployed into | -| `appGroupResourceId` | string | The resource ID of the AVD application group | +| `name` | string | The name of the AVD application group | +| `resourceGroupName` | string | The resource group the AVD application group was deployed into | +| `resourceId` | string | The resource ID of the AVD application group | ## Template references @@ -87,4 +87,4 @@ Tag names and tag values can be provided as needed. A tag can be left without a - [Applicationgroups/Applications](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DesktopVirtualization/2021-07-12/applicationGroups/applications) - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.DesktopVirtualization/hostpools/deploy.bicep b/arm/Microsoft.DesktopVirtualization/hostpools/deploy.bicep index 9cbd1b8cc4..4ce642b40d 100644 --- a/arm/Microsoft.DesktopVirtualization/hostpools/deploy.bicep +++ b/arm/Microsoft.DesktopVirtualization/hostpools/deploy.bicep @@ -190,13 +190,13 @@ module hostPool_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) i }] @description('The resource ID of the AVD host pool') -output hostPoolResourceId string = hostPool.id +output resourceId string = hostPool.id @description('The resource group the AVD host pool was deployed into') -output hostPoolResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the AVD host pool') -output hostPoolName string = hostPool.name +output name string = hostPool.name @description('The expiration time for the registration token') output tokenExpirationTime string = dateTimeAdd(baseTime, tokenValidityLength) diff --git a/arm/Microsoft.DesktopVirtualization/hostpools/readme.md b/arm/Microsoft.DesktopVirtualization/hostpools/readme.md index 5c1333ad58..2ec3871282 100644 --- a/arm/Microsoft.DesktopVirtualization/hostpools/readme.md +++ b/arm/Microsoft.DesktopVirtualization/hostpools/readme.md @@ -119,9 +119,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `hostPoolName` | string | The name of the AVD host pool | -| `hostPoolResourceGroup` | string | The resource group the AVD host pool was deployed into | -| `hostPoolResourceId` | string | The resource ID of the AVD host pool | +| `name` | string | The name of the AVD host pool | +| `resourceGroupName` | string | The resource group the AVD host pool was deployed into | +| `resourceId` | string | The resource ID of the AVD host pool | | `tokenExpirationTime` | string | The expiration time for the registration token | ## Template references @@ -129,4 +129,4 @@ Tag names and tag values can be provided as needed. A tag can be left without a - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Hostpools](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DesktopVirtualization/2021-07-12/hostPools) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.DesktopVirtualization/workspaces/deploy.bicep b/arm/Microsoft.DesktopVirtualization/workspaces/deploy.bicep index 8681b131e6..8485936e7b 100644 --- a/arm/Microsoft.DesktopVirtualization/workspaces/deploy.bicep +++ b/arm/Microsoft.DesktopVirtualization/workspaces/deploy.bicep @@ -117,10 +117,10 @@ module workspace_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) }] @description('The resource ID of the AVD workspace') -output workspaceResourceId string = workspace.id +output resourceId string = workspace.id @description('The resource group the AVD workspace was deployed into') -output workspaceResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the AVD workspace') -output workspaceName string = workspace.name +output name string = workspace.name diff --git a/arm/Microsoft.DesktopVirtualization/workspaces/readme.md b/arm/Microsoft.DesktopVirtualization/workspaces/readme.md index b0f97aea44..3a7a5bcf20 100644 --- a/arm/Microsoft.DesktopVirtualization/workspaces/readme.md +++ b/arm/Microsoft.DesktopVirtualization/workspaces/readme.md @@ -75,13 +75,13 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `workspaceName` | string | The name of the AVD workspace | -| `workspaceResourceGroup` | string | The resource group the AVD workspace was deployed into | -| `workspaceResourceId` | string | The resource ID of the AVD workspace | +| `name` | string | The name of the AVD workspace | +| `resourceGroupName` | string | The resource group the AVD workspace was deployed into | +| `resourceId` | string | The resource ID of the AVD workspace | ## Template references - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) - [Workspaces](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DesktopVirtualization/2021-07-12/workspaces) diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/deploy.bicep index 0386bfa11f..93a57a2b80 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/deploy.bicep @@ -256,13 +256,13 @@ module mongodbDatabases_resource 'mongodbDatabases/deploy.bicep' = [for mongodbD }] @description('The name of the database account.') -output databaseAccountName string = databaseAccount.name +output name string = databaseAccount.name @description('The resource ID of the database account.') -output databaseAccountResourceId string = databaseAccount.id +output resourceId string = databaseAccount.id @description('The name of the resource group the database account was created in.') -output databaseAccountResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(databaseAccount.identity, 'principalId') ? databaseAccount.identity.principalId : '' diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep index 7176e9e28d..20c9696c82 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep @@ -48,10 +48,10 @@ resource collection 'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/coll } @description('The name of the mongodb database.') -output collectionName string = collection.name +output name string = collection.name @description('The resource ID of the mongodb database.') -output collectionResourceId string = collection.id +output resourceId string = collection.id @description('The name of the resource group the mongodb database was created in.') -output collectionResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md index 58622bb0c1..2bd2c4a27c 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md @@ -82,9 +82,9 @@ The shard key and partition kind pair, only support "Hash" partition kind. | Output Name | Type | Description | | :-- | :-- | :-- | -| `collectionName` | string | The name of the mongodb database. | -| `collectionResourceGroup` | string | The name of the resource group the mongodb database was created in. | -| `collectionResourceId` | string | The resource ID of the mongodb database. | +| `name` | string | The name of the mongodb database. | +| `resourceGroupName` | string | The name of the resource group the mongodb database was created in. | +| `resourceId` | string | The resource ID of the mongodb database. | ## Template references diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep index 092be1e86a..6324c00cd8 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep @@ -51,10 +51,10 @@ module mongodbDatabase_collections 'collections/deploy.bicep' = [for collection }] @description('The name of the mongodb database.') -output mongodbDatabaseName string = mongodbDatabase.name +output name string = mongodbDatabase.name @description('The resource ID of the mongodb database.') -output mongodbDatabaseResourceId string = mongodbDatabase.id +output resourceId string = mongodbDatabase.id @description('The name of the resource group the mongodb database was created in.') -output mongodbDatabaseResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md index ecf28e6c1e..add1e582c9 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md @@ -45,9 +45,9 @@ Please reference the documentation for [collections](./collections/readme.md) | Output Name | Type | Description | | :-- | :-- | :-- | -| `mongodbDatabaseName` | string | The name of the mongodb database. | -| `mongodbDatabaseResourceGroup` | string | The name of the resource group the mongodb database was created in. | -| `mongodbDatabaseResourceId` | string | The resource ID of the mongodb database. | +| `name` | string | The name of the mongodb database. | +| `resourceGroupName` | string | The name of the resource group the mongodb database was created in. | +| `resourceId` | string | The resource ID of the mongodb database. | ## Template references diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/readme.md index 85361f5708..bdaa7c98a0 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/readme.md @@ -203,9 +203,9 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `databaseAccountName` | string | The name of the database account. | -| `databaseAccountResourceGroup` | string | The name of the resource group the database account was created in. | -| `databaseAccountResourceId` | string | The resource ID of the database account. | +| `name` | string | The name of the database account. | +| `resourceGroupName` | string | The name of the resource group the database account was created in. | +| `resourceId` | string | The resource ID of the database account. | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references @@ -217,4 +217,4 @@ You can specify multiple user assigned identities to a resource by providing add - [Databaseaccounts/Sqldatabases/Containers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DocumentDB/2021-07-01-preview/databaseAccounts/sqlDatabases/containers) - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep index c3861237b4..ed9016c511 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep @@ -59,10 +59,10 @@ resource container 'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/container } @description('The name of the container.') -output containerName string = container.name +output name string = container.name @description('The resource ID of the container.') -output containerResourceId string = container.id +output resourceId string = container.id @description('The name of the resource group the container was created in.') -output containerResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md index 19d3927e00..766b01ceef 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md @@ -40,9 +40,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `containerName` | string | The name of the container. | -| `containerResourceGroup` | string | The name of the resource group the container was created in. | -| `containerResourceId` | string | The resource ID of the container. | +| `name` | string | The name of the container. | +| `resourceGroupName` | string | The name of the resource group the container was created in. | +| `resourceId` | string | The resource ID of the container. | ## Template references diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep index 2a99e3615e..3f8fb488e9 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep @@ -51,10 +51,10 @@ module container 'containers/deploy.bicep' = [for container in containers: { }] @description('The name of the SQL database.') -output sqlDatabaseName string = sqlDatabase.name +output name string = sqlDatabase.name @description('The resource ID of the SQL database.') -output sqlDatabaseResourceId string = sqlDatabase.id +output resourceId string = sqlDatabase.id @description('The name of the resource group the SQL database was created in.') -output sqlDatabaseResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md index b4616aea71..1812f895f3 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md @@ -39,9 +39,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `sqlDatabaseName` | string | The name of the SQL database. | -| `sqlDatabaseResourceGroup` | string | The name of the resource group the SQL database was created in. | -| `sqlDatabaseResourceId` | string | The resource ID of the SQL database. | +| `name` | string | The name of the SQL database. | +| `resourceGroupName` | string | The name of the resource group the SQL database was created in. | +| `resourceId` | string | The resource ID of the SQL database. | ## Template references diff --git a/arm/Microsoft.EventGrid/topics/deploy.bicep b/arm/Microsoft.EventGrid/topics/deploy.bicep index d52af252e3..5b9a811825 100644 --- a/arm/Microsoft.EventGrid/topics/deploy.bicep +++ b/arm/Microsoft.EventGrid/topics/deploy.bicep @@ -141,10 +141,10 @@ module eventGrid_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) }] @description('The name of the event grid topic') -output eventGridName string = eventGrid.name +output name string = eventGrid.name @description('The resource ID of the event grid') -output eventGridResourceId string = eventGrid.id +output resourceId string = eventGrid.id @description('The name of the resource group the event grid was deployed into') -output eventGridResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.EventGrid/topics/readme.md b/arm/Microsoft.EventGrid/topics/readme.md index e5098c6d3b..a05d651eb6 100644 --- a/arm/Microsoft.EventGrid/topics/readme.md +++ b/arm/Microsoft.EventGrid/topics/readme.md @@ -113,9 +113,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `eventGridName` | string | The name of the event grid topic | -| `eventGridResourceGroup` | string | The name of the resource group the event grid was deployed into | -| `eventGridResourceId` | string | The resource ID of the event grid | +| `name` | string | The name of the event grid topic | +| `resourceGroupName` | string | The name of the resource group the event grid was deployed into | +| `resourceId` | string | The resource ID of the event grid | ## Template references @@ -123,5 +123,5 @@ Tag names and tag values can be provided as needed. A tag can be left without a - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) - [Privateendpoints](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-05-01/privateEndpoints) - [Privateendpoints/Privatednszonegroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-02-01/privateEndpoints/privateDnsZoneGroups) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) - [Topics](https://docs.microsoft.com/en-us/azure/templates/Microsoft.EventGrid/2020-06-01/topics) diff --git a/arm/Microsoft.EventHub/namespaces/authorizationRules/deploy.bicep b/arm/Microsoft.EventHub/namespaces/authorizationRules/deploy.bicep index bdb51b4a1a..c020ab271f 100644 --- a/arm/Microsoft.EventHub/namespaces/authorizationRules/deploy.bicep +++ b/arm/Microsoft.EventHub/namespaces/authorizationRules/deploy.bicep @@ -33,10 +33,10 @@ resource authorizationRule 'Microsoft.EventHub/namespaces/AuthorizationRules@201 } @description('The name of the authorization rule.') -output authorizationRuleName string = authorizationRule.name +output name string = authorizationRule.name @description('The resource ID of the authorization rule.') -output authorizationRuleResourceId string = authorizationRule.id +output resourceId string = authorizationRule.id @description('The name of the resource group the authorization rule was created in.') -output authorizationRuleResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.EventHub/namespaces/authorizationRules/readme.md b/arm/Microsoft.EventHub/namespaces/authorizationRules/readme.md index 83c4bbce86..fd85ebfbea 100644 --- a/arm/Microsoft.EventHub/namespaces/authorizationRules/readme.md +++ b/arm/Microsoft.EventHub/namespaces/authorizationRules/readme.md @@ -21,9 +21,9 @@ This module deploys an EventHub Namespace Authorization Rule | Output Name | Type | Description | | :-- | :-- | :-- | -| `authorizationRuleName` | string | The name of the authorization rule. | -| `authorizationRuleResourceGroup` | string | The name of the resource group the authorization rule was created in. | -| `authorizationRuleResourceId` | string | The resource ID of the authorization rule. | +| `name` | string | The name of the authorization rule. | +| `resourceGroupName` | string | The name of the resource group the authorization rule was created in. | +| `resourceId` | string | The resource ID of the authorization rule. | ## Template references diff --git a/arm/Microsoft.EventHub/namespaces/deploy.bicep b/arm/Microsoft.EventHub/namespaces/deploy.bicep index 4197861e75..996a0afe2d 100644 --- a/arm/Microsoft.EventHub/namespaces/deploy.bicep +++ b/arm/Microsoft.EventHub/namespaces/deploy.bicep @@ -130,8 +130,6 @@ var maxNameLength = 50 var uniqueEventHubNamespaceUntrim = uniqueString('EventHub Namespace${baseTime}') var uniqueEventHubNamespace = length(uniqueEventHubNamespaceUntrim) > maxNameLength ? substring(uniqueEventHubNamespaceUntrim, 0, maxNameLength) : uniqueEventHubNamespaceUntrim var name_var = empty(name) ? uniqueEventHubNamespace : name -var defaultSASKeyName = 'RootManageSharedAccessKey' -var authRuleResourceId = resourceId('Microsoft.EventHub/namespaces/authorizationRules', name_var, defaultSASKeyName) var maximumThroughputUnits_var = !isAutoInflateEnabled ? 0 : maximumThroughputUnits var virtualNetworkRules = [for index in range(0, (empty(networkAcls) ? 0 : length(networkAcls.virtualNetworkRules))): { id: '${vNetId}/subnets/${networkAcls.virtualNetworkRules[index].subnet}' @@ -287,13 +285,13 @@ module eventHubNamespace_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, }] @description('The name of the eventspace.') -output namespace string = eventHubNamespace.name +output name string = eventHubNamespace.name @description('The resource ID of the eventspace.') -output namespaceResourceId string = eventHubNamespace.id +output resourceId string = eventHubNamespace.id @description('The resource group where the namespace is deployed.') -output namespaceResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(eventHubNamespace.identity, 'principalId') ? eventHubNamespace.identity.principalId : '' diff --git a/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/deploy.bicep b/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/deploy.bicep index 546e9ecd55..1cf2a69174 100644 --- a/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/deploy.bicep +++ b/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/deploy.bicep @@ -28,10 +28,10 @@ resource disasterRecoveryConfig 'Microsoft.EventHub/namespaces/disasterRecoveryC } @description('The name of the disaster recovery config.') -output disasterRecoveryConfigName string = disasterRecoveryConfig.name +output name string = disasterRecoveryConfig.name @description('The resource ID of the disaster recovery config.') -output disasterRecoveryConfigResourceId string = disasterRecoveryConfig.id +output resourceId string = disasterRecoveryConfig.id @description('The name of the resource group the disaster recovery config was created in.') -output disasterRecoveryConfigResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/readme.md b/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/readme.md index 8dddace247..da2b069976 100644 --- a/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/readme.md +++ b/arm/Microsoft.EventHub/namespaces/disasterRecoveryConfigs/readme.md @@ -21,9 +21,9 @@ This module deploys an EventHub Namespace Disaster Recovery Config | Output Name | Type | Description | | :-- | :-- | :-- | -| `disasterRecoveryConfigName` | string | The name of the disaster recovery config. | -| `disasterRecoveryConfigResourceGroup` | string | The name of the resource group the disaster recovery config was created in. | -| `disasterRecoveryConfigResourceId` | string | The resource ID of the disaster recovery config. | +| `name` | string | The name of the disaster recovery config. | +| `resourceGroupName` | string | The name of the resource group the disaster recovery config was created in. | +| `resourceId` | string | The resource ID of the disaster recovery config. | ## Template references diff --git a/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/deploy.bicep b/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/deploy.bicep index a8a7fab1b9..dfb7faa1c9 100644 --- a/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/deploy.bicep +++ b/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/deploy.bicep @@ -40,10 +40,10 @@ resource authorizationRule 'Microsoft.EventHub/namespaces/eventhubs/authorizatio } @description('The name of the authorization rule.') -output authorizationRuleName string = authorizationRule.name +output name string = authorizationRule.name @description('The resource ID of the authorization rule.') -output authorizationRuleResourceId string = authorizationRule.id +output resourceId string = authorizationRule.id @description('The name of the resource group the authorization rule was created in.') -output authorizationRuleResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/readme.md b/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/readme.md index b48216d9c4..aaa24b3bb8 100644 --- a/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/readme.md +++ b/arm/Microsoft.EventHub/namespaces/eventhubs/authorizationRules/readme.md @@ -22,9 +22,9 @@ This module deploys an EventHub Namespace EventHubs Authorization Rule | Output Name | Type | Description | | :-- | :-- | :-- | -| `authorizationRuleName` | string | The name of the authorization rule. | -| `authorizationRuleResourceGroup` | string | The name of the resource group the authorization rule was created in. | -| `authorizationRuleResourceId` | string | The resource ID of the authorization rule. | +| `name` | string | The name of the authorization rule. | +| `resourceGroupName` | string | The name of the resource group the authorization rule was created in. | +| `resourceId` | string | The resource ID of the authorization rule. | ## Template references diff --git a/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/deploy.bicep b/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/deploy.bicep index 59ea5c2fe5..90d9958a28 100644 --- a/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/deploy.bicep +++ b/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/deploy.bicep @@ -35,10 +35,10 @@ resource consumerGroup 'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2 } @description('The name of the consumer group.') -output consumerGroupName string = consumerGroup.name +output name string = consumerGroup.name @description('The resource ID of the consumer group.') -output consumerGroupResourceId string = consumerGroup.id +output resourceId string = consumerGroup.id @description('The name of the resource group the consumer group was created in.') -output consumerGroupResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/readme.md b/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/readme.md index 621ae20a94..e5f2311d74 100644 --- a/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/readme.md +++ b/arm/Microsoft.EventHub/namespaces/eventhubs/consumergroups/readme.md @@ -22,9 +22,9 @@ This module deploys an EventHub Namespace EventHubs Consumer Group | Output Name | Type | Description | | :-- | :-- | :-- | -| `consumerGroupName` | string | The name of the consumer group. | -| `consumerGroupResourceGroup` | string | The name of the resource group the consumer group was created in. | -| `consumerGroupResourceId` | string | The resource ID of the consumer group. | +| `name` | string | The name of the consumer group. | +| `resourceGroupName` | string | The name of the resource group the consumer group was created in. | +| `resourceId` | string | The resource ID of the consumer group. | ## Template references diff --git a/arm/Microsoft.EventHub/namespaces/eventhubs/deploy.bicep b/arm/Microsoft.EventHub/namespaces/eventhubs/deploy.bicep index 9f90d167c5..d12aa34963 100644 --- a/arm/Microsoft.EventHub/namespaces/eventhubs/deploy.bicep +++ b/arm/Microsoft.EventHub/namespaces/eventhubs/deploy.bicep @@ -176,13 +176,13 @@ module eventHub_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) i }] @description('The name of the event hub.') -output eventhubName string = eventHub.name +output name string = eventHub.name @description('The resource ID of the event hub.') output eventHubId string = eventHub.id @description('The resource group the event hub was deployed into.') -output eventHubResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The authentication rule resource ID of the event hub.') -output authRuleResourceId string = resourceId('Microsoft.EventHub/namespaces/authorizationRules', namespaceName, 'RootManageSharedAccessKey') +output resourceId string = az.resourceId('Microsoft.EventHub/namespaces/authorizationRules', namespaceName, 'RootManageSharedAccessKey') diff --git a/arm/Microsoft.EventHub/namespaces/eventhubs/readme.md b/arm/Microsoft.EventHub/namespaces/eventhubs/readme.md index 3ab5c1ae22..63f6b5580d 100644 --- a/arm/Microsoft.EventHub/namespaces/eventhubs/readme.md +++ b/arm/Microsoft.EventHub/namespaces/eventhubs/readme.md @@ -62,10 +62,10 @@ This module deploys an Event Hub. | Output Name | Type | Description | | :-- | :-- | :-- | -| `authRuleResourceId` | string | The authentication rule resource ID of the event hub. | | `eventHubId` | string | The resource ID of the event hub. | -| `eventhubName` | string | The name of the event hub. | -| `eventHubResourceGroup` | string | The resource group the event hub was deployed into. | +| `name` | string | The name of the event hub. | +| `resourceGroupName` | string | The resource group the event hub was deployed into. | +| `resourceId` | string | The authentication rule resource ID of the event hub. | ## Template references @@ -73,4 +73,4 @@ This module deploys an Event Hub. - [Namespaces/Eventhubs](https://docs.microsoft.com/en-us/azure/templates/Microsoft.EventHub/2021-06-01-preview/namespaces/eventhubs) - [Namespaces/Eventhubs/Authorizationrules](https://docs.microsoft.com/en-us/azure/templates/Microsoft.EventHub/2021-06-01-preview/namespaces/eventhubs/authorizationRules) - [Namespaces/Eventhubs/Consumergroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.EventHub/2021-06-01-preview/namespaces/eventhubs/consumergroups) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments) diff --git a/arm/Microsoft.EventHub/namespaces/readme.md b/arm/Microsoft.EventHub/namespaces/readme.md index c414c637b9..c4c3927f1f 100644 --- a/arm/Microsoft.EventHub/namespaces/readme.md +++ b/arm/Microsoft.EventHub/namespaces/readme.md @@ -142,9 +142,9 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `namespace` | string | The name of the eventspace. | -| `namespaceResourceGroup` | string | The resource group where the namespace is deployed. | -| `namespaceResourceId` | string | The resource ID of the eventspace. | +| `name` | string | The name of the eventspace. | +| `resourceGroupName` | string | The resource group where the namespace is deployed. | +| `resourceId` | string | The resource ID of the eventspace. | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references diff --git a/arm/Microsoft.HealthBot/healthBots/deploy.bicep b/arm/Microsoft.HealthBot/healthBots/deploy.bicep index 413c3ebdb1..143837e801 100644 --- a/arm/Microsoft.HealthBot/healthBots/deploy.bicep +++ b/arm/Microsoft.HealthBot/healthBots/deploy.bicep @@ -58,10 +58,10 @@ module healthBot_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) }] @description('The resource group the health bot was deployed into') -output azureHealthBotResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the health bot') -output azureHealthBotName string = azureHealthBot.name +output name string = azureHealthBot.name @description('The resource ID of the health bot') -output azureHealthBotResourceId string = azureHealthBot.id +output resourceId string = azureHealthBot.id diff --git a/arm/Microsoft.HealthBot/healthBots/readme.md b/arm/Microsoft.HealthBot/healthBots/readme.md index e8acfd748f..f6896105bf 100644 --- a/arm/Microsoft.HealthBot/healthBots/readme.md +++ b/arm/Microsoft.HealthBot/healthBots/readme.md @@ -65,12 +65,12 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `azureHealthBotName` | string | The name of the health bot | -| `azureHealthBotResourceGroup` | string | The resource group the health bot was deployed into | -| `azureHealthBotResourceId` | string | The resource ID of the health bot | +| `name` | string | The name of the health bot | +| `resourceGroupName` | string | The resource group the health bot was deployed into | +| `resourceId` | string | The resource ID of the health bot | ## Template references - [Define resources with Bicep and ARM templates](https://docs.microsoft.com/en-us/azure/templates) - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) -- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2021-04-01-preview/roleAssignments) +- [Roleassignments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/roleAssignments)