diff --git a/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep index 374bde3249..7df7ce3311 100644 --- a/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep @@ -35,10 +35,10 @@ resource authorizationRule 'Microsoft.ServiceBus/namespaces/AuthorizationRules@2 } @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.ServiceBus/namespaces/authorizationRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/readme.md index 0b9d883905..391219c3f0 100644 --- a/arm/Microsoft.ServiceBus/namespaces/authorizationRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/readme.md @@ -21,9 +21,9 @@ This module deploys authorization rules for a service bus namespace | 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.ServiceBus/namespaces/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/deploy.bicep index 0bfc27f840..5d934a093a 100644 --- a/arm/Microsoft.ServiceBus/namespaces/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/deploy.bicep @@ -276,13 +276,13 @@ module serviceBusNamespace_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignmen }] @description('The resource ID of the deployed service bus namespace') -output serviceBusNamespaceResourceId string = serviceBusNamespace.id +output resourceId string = serviceBusNamespace.id @description('The resource group of the deployed service bus namespace') -output serviceBusNamespaceResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the deployed service bus namespace') -output serviceBusNamespaceName string = serviceBusNamespace.name +output name string = serviceBusNamespace.name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(serviceBusNamespace.identity, 'principalId') ? serviceBusNamespace.identity.principalId : '' diff --git a/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep index 91c66d20b3..bc8478a0a3 100644 --- a/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep @@ -34,10 +34,10 @@ resource disasterRecoveryConfig 'Microsoft.ServiceBus/namespaces/disasterRecover } @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.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md index 562c6f8492..7d8cd5c02d 100644 --- a/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md @@ -22,9 +22,9 @@ This module deploys a disaster recovery config for a service bus Namespace | 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.ServiceBus/namespaces/ipFilterRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/deploy.bicep index 1ef4c4d642..9acb32dada 100644 --- a/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/deploy.bicep @@ -42,10 +42,10 @@ resource ipFilterRule 'Microsoft.ServiceBus/namespaces/ipFilterRules@2018-01-01- } @description('The name of the IP filter rule.') -output ipFilterRuleName string = ipFilterRule.name +output name string = ipFilterRule.name @description('The Resource ID of the IP filter rule.') -output ipFilterRuleResourceId string = ipFilterRule.id +output resourceId string = ipFilterRule.id @description('The name of the Resource Group the IP filter rule was created in.') -output ipFilterRuleResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md index ecffe89294..e45eaa35c9 100644 --- a/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md @@ -23,9 +23,9 @@ This module deploys IP filter rules for a service bus namespace | Output Name | Type | Description | | :-- | :-- | :-- | -| `ipFilterRuleName` | string | The name of the IP filter rule. | -| `ipFilterRuleResourceGroup` | string | The name of the Resource Group the IP filter rule was created in. | -| `ipFilterRuleResourceId` | string | The Resource ID of the IP filter rule. | +| `name` | string | The name of the IP filter rule. | +| `resourceGroupName` | string | The name of the Resource Group the IP filter rule was created in. | +| `resourceId` | string | The Resource ID of the IP filter rule. | ## Template references diff --git a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep index 93eebffba1..e17e03e700 100644 --- a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep @@ -34,10 +34,10 @@ resource migrationConfiguration 'Microsoft.ServiceBus/namespaces/migrationConfig } @description('The name of the migration configuration.') -output migrationConfigurationName string = migrationConfiguration.name +output name string = migrationConfiguration.name @description('The Resource ID of the migration configuration') -output migrationConfigurationResourceId string = migrationConfiguration.id +output resourceId string = migrationConfiguration.id @description('The name of the Resource Group the migration configuration was created in.') -output migrationConfigurationResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md index 5da07e6fa8..ab319b323c 100644 --- a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md @@ -22,9 +22,9 @@ This module deploys a migration configuration for a service bus namespace | Output Name | Type | Description | | :-- | :-- | :-- | -| `migrationConfigurationName` | string | The name of the migration configuration. | -| `migrationConfigurationResourceGroup` | string | The name of the Resource Group the migration configuration was created in. | -| `migrationConfigurationResourceId` | string | The Resource ID of the migration configuration | +| `name` | string | The name of the migration configuration. | +| `resourceGroupName` | string | The name of the Resource Group the migration configuration was created in. | +| `resourceId` | string | The Resource ID of the migration configuration | ## Template references diff --git a/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep index 43af5a9bb8..2b7831e8b3 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep @@ -40,10 +40,10 @@ resource authorizationRule 'Microsoft.ServiceBus/namespaces/queues/authorization } @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.ServiceBus/namespaces/queues/authorizationRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/readme.md index 89bc8dcea0..6a777d4c95 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/readme.md @@ -22,9 +22,9 @@ This module deploys an authorization rule for a service bus namespace queue. | 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.ServiceBus/namespaces/queues/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/queues/deploy.bicep index 4e6b08abce..e7c66ed6c3 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/queues/deploy.bicep @@ -140,10 +140,10 @@ module queue_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) in r }] @description('The name of the deployed queue') -output queueName string = queue.name +output name string = queue.name @description('The resource ID of the deployed queue') -output queueResourceId string = queue.id +output resourceId string = queue.id @description('The resource group of the deployed queue') -output queueResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ServiceBus/namespaces/queues/readme.md b/arm/Microsoft.ServiceBus/namespaces/queues/readme.md index 206c777941..18bc66a75c 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/queues/readme.md @@ -60,13 +60,13 @@ This module deploys a queue for a service bus namespace. | Output Name | Type | Description | | :-- | :-- | :-- | -| `queueName` | string | The name of the deployed queue | -| `queueResourceGroup` | string | The resource group of the deployed queue | -| `queueResourceId` | string | The resource ID of the deployed queue | +| `name` | string | The name of the deployed queue | +| `resourceGroupName` | string | The resource group of the deployed queue | +| `resourceId` | string | The resource ID of the deployed queue | ## Template references - [Locks](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2017-04-01/locks) - [Namespaces/Queues](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ServiceBus/2021-06-01-preview/namespaces/queues) - [Namespaces/Queues/Authorizationrules](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ServiceBus/2017-04-01/namespaces/queues/authorizationRules) -- [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.ServiceBus/namespaces/readme.md b/arm/Microsoft.ServiceBus/namespaces/readme.md index 5ae6ea0c82..8f1af8d1ce 100644 --- a/arm/Microsoft.ServiceBus/namespaces/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/readme.md @@ -142,9 +142,9 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `serviceBusNamespaceName` | string | The name of the deployed service bus namespace | -| `serviceBusNamespaceResourceGroup` | string | The resource group of the deployed service bus namespace | -| `serviceBusNamespaceResourceId` | string | The resource ID of the deployed service bus namespace | +| `name` | string | The name of the deployed service bus namespace | +| `resourceGroupName` | string | The resource group of the deployed service bus namespace | +| `resourceId` | string | The resource ID of the deployed service bus namespace | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references @@ -161,4 +161,4 @@ You can specify multiple user assigned identities to a resource by providing add - [Namespaces/Virtualnetworkrules](https://docs.microsoft.com/en-us/azure/templates/Microsoft.ServiceBus/2018-01-01-preview/namespaces/virtualnetworkrules) - [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-05-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.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep index 9782c36d1d..1d45c326da 100644 --- a/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep @@ -30,10 +30,10 @@ resource virtualNetworkRule 'Microsoft.ServiceBus/namespaces/virtualNetworkRules } @description('The name of the virtual network rule.') -output virtualNetworkRuleName string = virtualNetworkRule.name +output name string = virtualNetworkRule.name @description('The Resource ID of the virtual network rule.') -output virtualNetworkRuleResourceId string = virtualNetworkRule.id +output resourceId string = virtualNetworkRule.id @description('The name of the Resource Group the virtual network rule was created in.') -output virtualNetworkRuleResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md index 17b0e131b1..5a561f17bb 100644 --- a/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md @@ -21,9 +21,9 @@ This module deploys a virtual network rule for a service bus namespace. | Output Name | Type | Description | | :-- | :-- | :-- | -| `virtualNetworkRuleName` | string | The name of the virtual network rule. | -| `virtualNetworkRuleResourceGroup` | string | The name of the Resource Group the virtual network rule was created in. | -| `virtualNetworkRuleResourceId` | string | The Resource ID of the virtual network rule. | +| `name` | string | The name of the virtual network rule. | +| `resourceGroupName` | string | The name of the Resource Group the virtual network rule was created in. | +| `resourceId` | string | The Resource ID of the virtual network rule. | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep b/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep index a9adff6115..abb6be4a2e 100644 --- a/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep @@ -37,10 +37,10 @@ resource administrator 'Microsoft.Sql/managedInstances/administrators@2021-02-01 } @description('The name of the deployed managed instance') -output administratorName string = administrator.name +output name string = administrator.name @description('The resource ID of the deployed managed instance') -output administratorResourceId string = administrator.id +output resourceId string = administrator.id @description('The resource group of the deployed managed instance') -output administratorResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/administrators/readme.md b/arm/Microsoft.Sql/managedInstances/administrators/readme.md index 1cc304eb5f..af24ba2f4c 100644 --- a/arm/Microsoft.Sql/managedInstances/administrators/readme.md +++ b/arm/Microsoft.Sql/managedInstances/administrators/readme.md @@ -23,9 +23,9 @@ This module deploys an administrator for the SQL managed instance | Output Name | Type | Description | | :-- | :-- | :-- | -| `administratorName` | string | The name of the deployed managed instance | -| `administratorResourceGroup` | string | The resource group of the deployed managed instance | -| `administratorResourceId` | string | The resource ID of the deployed managed instance | +| `name` | string | The name of the deployed managed instance | +| `resourceGroupName` | string | The resource group of the deployed managed instance | +| `resourceId` | string | The resource ID of the deployed managed instance | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep index 072194f8a6..b7065f2cbf 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep @@ -47,10 +47,10 @@ resource backupLongTermRetentionPolicy 'Microsoft.Sql/managedInstances/databases } @description('The name of the deployed database backup long-term retention policy') -output backupLongTermRetentionPolicyName string = backupLongTermRetentionPolicy.name +output name string = backupLongTermRetentionPolicy.name @description('The resource ID of the deployed database backup long-term retention policy') -output backupLongTermRetentionPolicyResourceId string = backupLongTermRetentionPolicy.id +output resourceId string = backupLongTermRetentionPolicy.id @description('The resource group of the deployed database backup long-term retention policy') -output backupLongTermRetentionPolicyResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md index 9955ecd97d..be4a6eb1fd 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md +++ b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md @@ -25,9 +25,9 @@ This module deploys a backup long-term retention policies for SQL Managed Instan | Output Name | Type | Description | | :-- | :-- | :-- | -| `backupLongTermRetentionPolicyName` | string | The name of the deployed database backup long-term retention policy | -| `backupLongTermRetentionPolicyResourceGroup` | string | The resource group of the deployed database backup long-term retention policy | -| `backupLongTermRetentionPolicyResourceId` | string | The resource ID of the deployed database backup long-term retention policy | +| `name` | string | The name of the deployed database backup long-term retention policy | +| `resourceGroupName` | string | The resource group of the deployed database backup long-term retention policy | +| `resourceId` | string | The resource ID of the deployed database backup long-term retention policy | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep index 19cb137a24..bafa3edcb3 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep @@ -35,10 +35,10 @@ resource backupShortTermRetentionPolicy 'Microsoft.Sql/managedInstances/database } @description('The name of the deployed database backup short-term retention policy') -output backupShortTermRetentionPolicyName string = backupShortTermRetentionPolicy.name +output name string = backupShortTermRetentionPolicy.name @description('The resource ID of the deployed database backup short-term retention policy') -output backupShortTermRetentionPolicyResourceId string = backupShortTermRetentionPolicy.id +output resourceId string = backupShortTermRetentionPolicy.id @description('The resource group of the deployed database backup short-term retention policy') -output backupShortTermRetentionPolicyResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md index b8a66de610..7f499715ae 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md +++ b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md @@ -23,9 +23,9 @@ This module deploys a backup short-term retention policies for SQL Managed Insta | Output Name | Type | Description | | :-- | :-- | :-- | -| `backupShortTermRetentionPolicyName` | string | The name of the deployed database backup short-term retention policy | -| `backupShortTermRetentionPolicyResourceGroup` | string | The resource group of the deployed database backup short-term retention policy | -| `backupShortTermRetentionPolicyResourceId` | string | The resource ID of the deployed database backup short-term retention policy | +| `name` | string | The name of the deployed database backup short-term retention policy | +| `resourceGroupName` | string | The resource group of the deployed database backup short-term retention policy | +| `resourceId` | string | The resource ID of the deployed database backup short-term retention policy | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep b/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep index b76e90c36b..a8bc1ddfeb 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep @@ -177,10 +177,10 @@ module database_backupLongTermRetentionPolicy 'backupLongTermRetentionPolicies/d } @description('The name of the deployed database') -output databaseName string = database.name +output name string = database.name @description('The resource ID of the deployed database') -output databaseResourceId string = database.id +output resourceId string = database.id @description('The resource group the database was deployed into') -output databaseResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/databases/readme.md b/arm/Microsoft.Sql/managedInstances/databases/readme.md index fb87356250..c4801c7067 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/readme.md +++ b/arm/Microsoft.Sql/managedInstances/databases/readme.md @@ -66,9 +66,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `databaseName` | string | The name of the deployed database | -| `databaseResourceGroup` | string | The resource group the database was deployed into | -| `databaseResourceId` | string | The resource ID of the deployed database | +| `name` | string | The name of the deployed database | +| `resourceGroupName` | string | The resource group the database was deployed into | +| `resourceId` | string | The resource ID of the deployed database | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/deploy.bicep b/arm/Microsoft.Sql/managedInstances/deploy.bicep index 2fd206b0e8..abb26fa29a 100644 --- a/arm/Microsoft.Sql/managedInstances/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/deploy.bicep @@ -310,7 +310,7 @@ module managedInstance_encryptionProtector 'encryptionProtector/deploy.bicep' = name: '${uniqueString(deployment().name, location)}-SqlMi-EncryProtector' params: { managedInstanceName: managedInstance.name - serverKeyName: contains(encryptionProtectorObj, 'serverKeyName') ? encryptionProtectorObj.serverKeyName : managedInstance_key[0].outputs.keyName + serverKeyName: contains(encryptionProtectorObj, 'serverKeyName') ? encryptionProtectorObj.serverKeyName : managedInstance_key[0].outputs.name name: contains(encryptionProtectorObj, 'name') ? encryptionProtectorObj.serverKeyType : 'current' serverKeyType: contains(encryptionProtectorObj, 'serverKeyType') ? encryptionProtectorObj.serverKeyType : 'ServiceManaged' autoRotationEnabled: contains(encryptionProtectorObj, 'autoRotationEnabled') ? encryptionProtectorObj.autoRotationEnabled : true @@ -328,13 +328,13 @@ module managedInstance_administrator 'administrators/deploy.bicep' = if (!empty( } @description('The name of the deployed managed instance') -output managedInstanceName string = managedInstance.name +output name string = managedInstance.name @description('The resource ID of the deployed managed instance') -output managedInstanceResourceId string = managedInstance.id +output resourceId string = managedInstance.id @description('The resource group of the deployed managed instance') -output managedInstanceResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(managedInstance.identity, 'principalId') ? managedInstance.identity.principalId : '' diff --git a/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep b/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep index 1255db9ba1..d78337e1e8 100644 --- a/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep @@ -40,10 +40,10 @@ resource encryptionProtector 'Microsoft.Sql/managedInstances/encryptionProtector } @description('The name of the deployed managed instance') -output encryptionProtectorName string = encryptionProtector.name +output name string = encryptionProtector.name @description('The resource ID of the deployed managed instance') -output encryptionProtectorResourceId string = encryptionProtector.id +output resourceId string = encryptionProtector.id @description('The resource group of the deployed managed instance') -output encryptionProtectorResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md b/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md index 09729cdf86..75818de364 100644 --- a/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md +++ b/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md @@ -23,9 +23,9 @@ This module deploys an encryption protector for a SQL managed instance. | Output Name | Type | Description | | :-- | :-- | :-- | -| `encryptionProtectorName` | string | The name of the deployed managed instance | -| `encryptionProtectorResourceGroup` | string | The resource group of the deployed managed instance | -| `encryptionProtectorResourceId` | string | The resource ID of the deployed managed instance | +| `name` | string | The name of the deployed managed instance | +| `resourceGroupName` | string | The resource group of the deployed managed instance | +| `resourceId` | string | The resource ID of the deployed managed instance | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep b/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep index 370f730a01..09a06b1c32 100644 --- a/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep @@ -42,10 +42,10 @@ resource key 'Microsoft.Sql/managedInstances/keys@2021-05-01-preview' = { } @description('The name of the deployed managed instance') -output keyName string = key.name +output name string = key.name @description('The resource ID of the deployed managed instance') -output keyResourceId string = key.id +output resourceId string = key.id @description('The resource group of the deployed managed instance') -output keyResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/keys/readme.md b/arm/Microsoft.Sql/managedInstances/keys/readme.md index 4b493883ca..d8b5e81efd 100644 --- a/arm/Microsoft.Sql/managedInstances/keys/readme.md +++ b/arm/Microsoft.Sql/managedInstances/keys/readme.md @@ -22,9 +22,9 @@ This module deploys a key for a SQL managed instance. | Output Name | Type | Description | | :-- | :-- | :-- | -| `keyName` | string | The name of the deployed managed instance | -| `keyResourceGroup` | string | The resource group of the deployed managed instance | -| `keyResourceId` | string | The resource ID of the deployed managed instance | +| `name` | string | The name of the deployed managed instance | +| `resourceGroupName` | string | The resource group of the deployed managed instance | +| `resourceId` | string | The resource ID of the deployed managed instance | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/readme.md b/arm/Microsoft.Sql/managedInstances/readme.md index 69c5096f17..6b005da7f9 100644 --- a/arm/Microsoft.Sql/managedInstances/readme.md +++ b/arm/Microsoft.Sql/managedInstances/readme.md @@ -135,9 +135,9 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `managedInstanceName` | string | The name of the deployed managed instance | -| `managedInstanceResourceGroup` | string | The resource group of the deployed managed instance | -| `managedInstanceResourceId` | string | The resource ID of the deployed managed instance | +| `name` | string | The name of the deployed managed instance | +| `resourceGroupName` | string | The resource group of the deployed managed instance | +| `resourceId` | string | The resource ID of the deployed managed instance | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references @@ -153,4 +153,4 @@ You can specify multiple user assigned identities to a resource by providing add - [Managedinstances/Keys](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Sql/2021-05-01-preview/managedInstances/keys) - [Managedinstances/Securityalertpolicies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Sql/2017-03-01-preview/managedInstances/securityAlertPolicies) - [Managedinstances/Vulnerabilityassessments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Sql/2021-02-01-preview/managedInstances/vulnerabilityAssessments) -- [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.Sql/managedInstances/securityAlertPolicies/deploy.bicep b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/deploy.bicep index bdb5d1946c..c1e0a92d8f 100644 --- a/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/deploy.bicep @@ -36,10 +36,10 @@ resource securityAlertPolicy 'Microsoft.Sql/managedInstances/securityAlertPolici } @description('The name of the deployed security alert policy') -output securityAlertPolicyName string = securityAlertPolicy.name +output name string = securityAlertPolicy.name @description('The resource ID of the deployed security alert policy') -output securityAlertPolicyResourceId string = securityAlertPolicy.id +output resourceId string = securityAlertPolicy.id @description('The resource group of the deployed security alert policy') -output securityAlertPolicyResourceGroupName string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md index e61563af02..c739262e8c 100644 --- a/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md +++ b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md @@ -22,9 +22,9 @@ This module deploys a security alert policy for a SQL managed instance. | Output Name | Type | Description | | :-- | :-- | :-- | -| `securityAlertPolicyName` | string | The name of the deployed security alert policy | -| `securityAlertPolicyResourceGroupName` | string | The resource group of the deployed security alert policy | -| `securityAlertPolicyResourceId` | string | The resource ID of the deployed security alert policy | +| `name` | string | The name of the deployed security alert policy | +| `resourceId` | string | The resource ID of the deployed security alert policy | +| `resourceGroupName` | string | The resource group of the deployed security alert policy | ## Template references diff --git a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep index b941a0f4e4..f044ac3f30 100644 --- a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep @@ -43,10 +43,10 @@ resource vulnerabilityAssessment 'Microsoft.Sql/managedInstances/vulnerabilityAs } @description('The name of the deployed vulnerability assessment') -output vulnerabilityAssessmentName string = vulnerabilityAssessment.name +output name string = vulnerabilityAssessment.name @description('The resource ID of the deployed vulnerability assessment') -output vulnerabilityAssessmentResourceId string = vulnerabilityAssessment.id +output resourceId string = vulnerabilityAssessment.id @description('The resource group of the deployed vulnerability assessment') -output vulnerabilityAssessmentResourceGroupName string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md index 0c1a8c50e1..153d661eb1 100644 --- a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md +++ b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md @@ -24,9 +24,9 @@ This module deploys a vulnerability assessment for a SQL managed instance. | Output Name | Type | Description | | :-- | :-- | :-- | -| `vulnerabilityAssessmentName` | string | The name of the deployed vulnerability assessment | -| `vulnerabilityAssessmentResourceGroupName` | string | The resource group of the deployed vulnerability assessment | -| `vulnerabilityAssessmentResourceId` | string | The resource ID of the deployed vulnerability assessment | +| `name` | string | The name of the deployed vulnerability assessment | +| `resourceId` | string | The resource ID of the deployed vulnerability assessment | +| `resourceGroupName` | string | The resource group of the deployed vulnerability assessment | ## Template references diff --git a/arm/Microsoft.Sql/servers/databases/deploy.bicep b/arm/Microsoft.Sql/servers/databases/deploy.bicep index 9a0454d893..09d7c6acc9 100644 --- a/arm/Microsoft.Sql/servers/databases/deploy.bicep +++ b/arm/Microsoft.Sql/servers/databases/deploy.bicep @@ -181,10 +181,10 @@ resource database_diagnosticSettings 'Microsoft.Insights/diagnosticSettings@2021 } @description('The name of the deployed database') -output databaseName string = database.name +output name string = database.name @description('The resource ID of the deployed database') -output databaseResourceId string = database.id +output resourceId string = database.id @description('The resourceGroup of the deployed database') -output databaseResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/servers/databases/readme.md b/arm/Microsoft.Sql/servers/databases/readme.md index 328530202a..9110cd7e13 100644 --- a/arm/Microsoft.Sql/servers/databases/readme.md +++ b/arm/Microsoft.Sql/servers/databases/readme.md @@ -61,9 +61,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `databaseName` | string | The name of the deployed database | -| `databaseResourceGroup` | string | The resourceGroup of the deployed database | -| `databaseResourceId` | string | The resource ID of the deployed database | +| `name` | string | The name of the deployed database | +| `resourceGroupName` | string | The resourceGroup of the deployed database | +| `resourceId` | string | The resource ID of the deployed database | ## Template references diff --git a/arm/Microsoft.Sql/servers/deploy.bicep b/arm/Microsoft.Sql/servers/deploy.bicep index 9b32d7818c..06787626f7 100644 --- a/arm/Microsoft.Sql/servers/deploy.bicep +++ b/arm/Microsoft.Sql/servers/deploy.bicep @@ -142,13 +142,13 @@ module server_securityAlertPolicies 'securityAlertPolicies/deploy.bicep' = [for }] @description('The name of the deployed SQL server') -output serverName string = server.name +output name string = server.name @description('The resource ID of the deployed SQL server') -output serverResourceId string = server.id +output resourceId string = server.id @description('The resourceGroup of the deployed SQL server') -output serverResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(server.identity, 'principalId') ? server.identity.principalId : '' diff --git a/arm/Microsoft.Sql/servers/firewallRules/deploy.bicep b/arm/Microsoft.Sql/servers/firewallRules/deploy.bicep index f5b76d2d95..e56973fb1a 100644 --- a/arm/Microsoft.Sql/servers/firewallRules/deploy.bicep +++ b/arm/Microsoft.Sql/servers/firewallRules/deploy.bicep @@ -32,10 +32,10 @@ resource firewallRule 'Microsoft.Sql/servers/firewallRules@2021-05-01-preview' = } @description('The name of the deployed firewall rule') -output databaseName string = firewallRule.name +output name string = firewallRule.name @description('The resource ID of the deployed firewall rule') -output databaseResourceId string = firewallRule.id +output resourceId string = firewallRule.id @description('The resourceGroup of the deployed firewall rule') -output databaseResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/servers/firewallRules/readme.md b/arm/Microsoft.Sql/servers/firewallRules/readme.md index 9850b4de65..862650690a 100644 --- a/arm/Microsoft.Sql/servers/firewallRules/readme.md +++ b/arm/Microsoft.Sql/servers/firewallRules/readme.md @@ -22,9 +22,9 @@ This module deploys an SQL Server Firewall rule. | Output Name | Type | Description | | :-- | :-- | :-- | -| `databaseName` | string | The name of the deployed firewall rule | -| `databaseResourceGroup` | string | The resourceGroup of the deployed firewall rule | -| `databaseResourceId` | string | The resource ID of the deployed firewall rule | +| `name` | string | The name of the deployed firewall rule | +| `resourceGroupName` | string | The resourceGroup of the deployed firewall rule | +| `resourceId` | string | The resource ID of the deployed firewall rule | ## Template references diff --git a/arm/Microsoft.Sql/servers/readme.md b/arm/Microsoft.Sql/servers/readme.md index 649dd85a41..5d05277843 100644 --- a/arm/Microsoft.Sql/servers/readme.md +++ b/arm/Microsoft.Sql/servers/readme.md @@ -88,16 +88,16 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `serverName` | string | The name of the deployed SQL server | -| `serverResourceGroup` | string | The resourceGroup of the deployed SQL server | -| `serverResourceId` | string | The resource ID of the deployed SQL server | +| `name` | string | The name of the deployed SQL server | +| `resourceGroupName` | string | The resourceGroup of the deployed SQL server | +| `resourceId` | string | The resource ID of the deployed SQL server | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## 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) - [Servers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Sql/2021-05-01-preview/servers) - [Servers/Databases](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Sql/2021-02-01-preview/servers/databases) - [Servers/Firewallrules](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Sql/2021-05-01-preview/servers/firewallRules) diff --git a/arm/Microsoft.Sql/servers/securityAlertPolicies/deploy.bicep b/arm/Microsoft.Sql/servers/securityAlertPolicies/deploy.bicep index c043733454..81d2ef6d46 100644 --- a/arm/Microsoft.Sql/servers/securityAlertPolicies/deploy.bicep +++ b/arm/Microsoft.Sql/servers/securityAlertPolicies/deploy.bicep @@ -57,10 +57,10 @@ resource securityAlertPolicy 'Microsoft.Sql/servers/securityAlertPolicies@2021-0 } @description('The name of the deployed security alert policy') -output databaseName string = securityAlertPolicy.name +output name string = securityAlertPolicy.name @description('The resource ID of the deployed security alert policy') -output databaseResourceId string = securityAlertPolicy.id +output resourceId string = securityAlertPolicy.id @description('The resourceGroup of the deployed security alert policy') -output databaseResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Sql/servers/securityAlertPolicies/readme.md b/arm/Microsoft.Sql/servers/securityAlertPolicies/readme.md index b3ad674ffa..a2fb1b5f77 100644 --- a/arm/Microsoft.Sql/servers/securityAlertPolicies/readme.md +++ b/arm/Microsoft.Sql/servers/securityAlertPolicies/readme.md @@ -27,9 +27,9 @@ This module deploys an SQL Server Security Alert Policy. | Output Name | Type | Description | | :-- | :-- | :-- | -| `databaseName` | string | The name of the deployed security alert policy | -| `databaseResourceGroup` | string | The resourceGroup of the deployed security alert policy | -| `databaseResourceId` | string | The resource ID of the deployed security alert policy | +| `name` | string | The name of the deployed security alert policy | +| `resourceGroupName` | string | The resourceGroup of the deployed security alert policy | +| `resourceId` | string | The resource ID of the deployed security alert policy | ## Template references diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep index b31e368ab8..ffc799067d 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep @@ -70,10 +70,10 @@ module container_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) }] @description('The name of the deployed container') -output containerName string = container.name +output name string = container.name @description('The resource ID of the deployed container') -output containerResourceId string = container.id +output resourceId string = container.id @description('The resource group of the deployed container') -output containerResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep index 567075d5f3..0137bc945c 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep @@ -47,10 +47,10 @@ resource immutabilityPolicy 'Microsoft.Storage/storageAccounts/blobServices/cont } @description('The name of the deployed immutability policy.') -output immutabilityPolicyName string = immutabilityPolicy.name +output name string = immutabilityPolicy.name @description('The resource ID of the deployed immutability policy.') -output immutabilityPolicyResourceId string = immutabilityPolicy.id +output resourceId string = immutabilityPolicy.id @description('The resource group of the deployed immutability policy.') -output immutabilityPolicyResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md index db1e8e5f41..e4780fd50f 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md @@ -24,9 +24,9 @@ This module deployes an Immutability Policy for a blob container | Output Name | Type | Description | | :-- | :-- | :-- | -| `immutabilityPolicyName` | string | The name of the deployed immutability policy. | -| `immutabilityPolicyResourceGroup` | string | The resource group of the deployed immutability policy. | -| `immutabilityPolicyResourceId` | string | The resource ID of the deployed immutability policy. | +| `name` | string | The name of the deployed immutability policy. | +| `resourceGroupName` | string | The resource group of the deployed immutability policy. | +| `resourceId` | string | The resource ID of the deployed immutability policy. | ## Template references diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md index 20926def1a..e413881c08 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md @@ -49,12 +49,12 @@ This module deployes a blob container | Output Name | Type | Description | | :-- | :-- | :-- | -| `containerName` | string | The name of the deployed container | -| `containerResourceGroup` | string | The resource group of the deployed container | -| `containerResourceId` | string | The resource ID of the deployed container | +| `name` | string | The name of the deployed container | +| `resourceGroupName` | string | The resource group of the deployed container | +| `resourceId` | string | The resource ID of the deployed container | ## Template references -- [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) - [Storageaccounts/Blobservices/Containers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/blobServices/containers) - [Storageaccounts/Blobservices/Containers/Immutabilitypolicies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/blobServices/containers/immutabilityPolicies) diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep index be1a7aeef8..898c8252ca 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep @@ -123,10 +123,10 @@ module blobServices_container 'containers/deploy.bicep' = [for (container, index }] @description('The name of the deployed blob service') -output blobServicesName string = blobServices.name +output name string = blobServices.name @description('The resource ID of the deployed blob service') -output blobServicesResourceId string = blobServices.id +output resourceId string = blobServices.id @description('The name of the deployed blob service') -output blobServicesResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md b/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md index f28400bb7c..73bf955e50 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md @@ -36,14 +36,14 @@ This module can be used to deploy a blob service into a storage account. | Output Name | Type | Description | | :-- | :-- | :-- | -| `blobServicesName` | string | The name of the deployed blob service | -| `blobServicesResourceGroup` | string | The name of the deployed blob service | -| `blobServicesResourceId` | string | The resource ID of the deployed blob service | +| `name` | string | The name of the deployed blob service | +| `resourceGroupName` | string | The name of the deployed blob service | +| `resourceId` | string | The resource ID of the deployed blob service | ## Template references - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) -- [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) - [Storageaccounts/Blobservices](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2021-06-01/storageAccounts/blobServices) - [Storageaccounts/Blobservices/Containers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/blobServices/containers) - [Storageaccounts/Blobservices/Containers/Immutabilitypolicies](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/blobServices/containers/immutabilityPolicies) diff --git a/arm/Microsoft.Storage/storageAccounts/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/deploy.bicep index f689827bd1..5900c2f763 100644 --- a/arm/Microsoft.Storage/storageAccounts/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/deploy.bicep @@ -318,16 +318,16 @@ module storageAccount_tableServices 'tableServices/deploy.bicep' = if (!empty(ta } @description('The resource ID of the deployed storage account') -output storageAccountResourceId string = storageAccount.id +output resourceId string = storageAccount.id @description('The name of the deployed storage account') -output storageAccountName string = storageAccount.name +output name string = storageAccount.name @description('The resource group of the deployed storage account') -output storageAccountResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The primary blob endpoint reference if blob services are deployed.') -output storageAccountPrimaryBlobEndpoint string = !empty(blobServices) && contains(blobServices, 'containers') ? reference('Microsoft.Storage/storageAccounts/${storageAccount.name}', '2019-04-01').primaryEndpoints.blob : '' +output primaryBlobEndpoint string = !empty(blobServices) && contains(blobServices, 'containers') ? reference('Microsoft.Storage/storageAccounts/${storageAccount.name}', '2019-04-01').primaryEndpoints.blob : '' @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(storageAccount.identity, 'principalId') ? storageAccount.identity.principalId : '' diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep index 4dbfb97fcf..838a8539a8 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep @@ -119,10 +119,10 @@ module fileServices_shares 'shares/deploy.bicep' = [for (share, index) in shares }] @description('The name of the deployed file share service') -output fileServicesName string = fileServices.name +output name string = fileServices.name @description('The resource ID of the deployed file share service') -output fileServicesResourceId string = fileServices.id +output resourceId string = fileServices.id @description('The resource group of the deployed file share service') -output fileServicesResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md b/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md index 1ae193c4e9..a0b2e57761 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md @@ -33,13 +33,13 @@ This module can be used to deploy a file share service into a storage account. | Output Name | Type | Description | | :-- | :-- | :-- | -| `fileServicesName` | string | The name of the deployed file share service | -| `fileServicesResourceGroup` | string | The resource group of the deployed file share service | -| `fileServicesResourceId` | string | The resource ID of the deployed file share service | +| `name` | string | The name of the deployed file share service | +| `resourceGroupName` | string | The resource group of the deployed file share service | +| `resourceId` | string | The resource ID of the deployed file share service | ## Template references - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) -- [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) - [Storageaccounts/Fileservices](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2021-04-01/storageAccounts/fileServices) - [Storageaccounts/Fileservices/Shares](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/fileServices/shares) diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep index c1bc080671..42f73f5d23 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep @@ -48,10 +48,10 @@ module fileShare_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) }] @description('The name of the deployed file share') -output fileShareName string = fileShare.name +output name string = fileShare.name @description('The resource ID of the deployed file share') -output fileShareResourceId string = fileShare.id +output resourceId string = fileShare.id @description('The resource group of the deployed file share') -output fileShareResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md index a56c46f324..4b8026af3b 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md @@ -46,11 +46,11 @@ This module deploys a storage account file share. | Output Name | Type | Description | | :-- | :-- | :-- | -| `fileShareName` | string | The name of the deployed file share | -| `fileShareResourceGroup` | string | The resource group of the deployed file share | -| `fileShareResourceId` | string | The resource ID of the deployed file share | +| `name` | string | The name of the deployed file share | +| `resourceGroupName` | string | The resource group of the deployed file share | +| `resourceId` | string | The resource ID of the deployed file share | ## Template references -- [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) - [Storageaccounts/Fileservices/Shares](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/fileServices/shares) diff --git a/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep index 88f93aacf6..739e341aa0 100644 --- a/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep @@ -32,10 +32,10 @@ resource managementPolicy 'Microsoft.Storage/storageAccounts/managementPolicies@ } @description('The resource ID of the deployed management policy') -output managementPoliciesResourceId string = managementPolicy.name +output resourceId string = managementPolicy.name @description('The name of the deployed management policy') -output managementPoliciesName string = managementPolicy.name +output name string = managementPolicy.name @description('The resource group of the deployed management policy') -output managementPoliciesResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md b/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md index 705d87bea3..a7b9d4a67b 100644 --- a/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md @@ -55,9 +55,9 @@ This module can be used to deploy a management policies into a storage account. | Output Name | Type | Description | | :-- | :-- | :-- | -| `managementPoliciesName` | string | The name of the deployed management policy | -| `managementPoliciesResourceGroup` | string | The resource group of the deployed management policy | -| `managementPoliciesResourceId` | string | The resource ID of the deployed management policy | +| `name` | string | The name of the deployed management policy | +| `resourceGroupName` | string | The resource group of the deployed management policy | +| `resourceId` | string | The resource ID of the deployed management policy | ## Template references diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep index 021d9a6ee9..4566df0eca 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep @@ -107,10 +107,10 @@ module queueServices_queues 'queues/deploy.bicep' = [for (queue, index) in queue }] @description('The name of the deployed file share service') -output queueServicesName string = queueServices.name +output name string = queueServices.name @description('The resource ID of the deployed file share service') -output queueServicesResourceId string = queueServices.id +output resourceId string = queueServices.id @description('The resource group of the deployed file share service') -output queueServicesResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep index 0a7841ac89..567182bcb1 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep @@ -48,10 +48,10 @@ module queue_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) in r }] @description('The name of the deployed queue') -output queueName string = queue.name +output name string = queue.name @description('The resource ID of the deployed queue') -output queueResourceId string = queue.id +output resourceId string = queue.id @description('The resource group of the deployed queue') -output queueResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md index e23a57ebf3..d6eb5e151c 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md @@ -46,11 +46,11 @@ This module deployes a storage account queue | Output Name | Type | Description | | :-- | :-- | :-- | -| `queueName` | string | The name of the deployed queue | -| `queueResourceGroup` | string | The resource group of the deployed queue | -| `queueResourceId` | string | The resource ID of the deployed queue | +| `name` | string | The name of the deployed queue | +| `resourceGroupName` | string | The resource group of the deployed queue | +| `resourceId` | string | The resource ID of the deployed queue | ## Template references -- [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) - [Storageaccounts/Queueservices/Queues](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/queueServices/queues) diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md b/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md index 02db74800b..c22e0b3c80 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md @@ -32,13 +32,13 @@ This module can be used to deploy a file share service into a storage account. | Output Name | Type | Description | | :-- | :-- | :-- | -| `queueServicesName` | string | The name of the deployed file share service | -| `queueServicesResourceGroup` | string | The resource group of the deployed file share service | -| `queueServicesResourceId` | string | The resource ID of the deployed file share service | +| `name` | string | The name of the deployed file share service | +| `resourceGroupName` | string | The resource group of the deployed file share service | +| `resourceId` | string | The resource ID of the deployed file share service | ## Template references - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) -- [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) - [Storageaccounts/Queueservices](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2021-04-01/storageAccounts/queueServices) - [Storageaccounts/Queueservices/Queues](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/queueServices/queues) diff --git a/arm/Microsoft.Storage/storageAccounts/readme.md b/arm/Microsoft.Storage/storageAccounts/readme.md index 13693b0fe7..ffbd6ea670 100644 --- a/arm/Microsoft.Storage/storageAccounts/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/readme.md @@ -167,10 +167,10 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `storageAccountName` | string | The name of the deployed storage account | -| `storageAccountPrimaryBlobEndpoint` | string | The primary blob endpoint reference if blob services are deployed. | -| `storageAccountResourceGroup` | string | The resource group of the deployed storage account | -| `storageAccountResourceId` | string | The resource ID of the deployed storage account | +| `name` | string | The name of the deployed storage account | +| `primaryBlobEndpoint` | string | The primary blob endpoint reference if blob services are deployed. | +| `resourceGroupName` | string | The resource group of the deployed storage account | +| `resourceId` | string | The resource ID of the deployed storage account | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Considerations @@ -184,7 +184,7 @@ The hierarchical namespace of the storage account (see parameter `enableHierarch - [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) - [Storageaccounts](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2021-06-01/storageAccounts) - [Storageaccounts/Blobservices](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2021-06-01/storageAccounts/blobServices) - [Storageaccounts/Blobservices/Containers](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Storage/2019-06-01/storageAccounts/blobServices/containers) diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep index a7ec57af23..fb535f7691 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep @@ -105,10 +105,10 @@ module tableServices_tables 'tables/deploy.bicep' = [for (tableName, index) in t }] @description('The name of the deployed table service') -output tableServicesName string = tableServices.name +output name string = tableServices.name @description('The resource ID of the deployed table service') -output tableServicesResourceId string = tableServices.id +output resourceId string = tableServices.id @description('The resource group of the deployed table service') -output tableServicesResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md b/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md index e2406550d6..b1945d05f6 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md @@ -30,9 +30,9 @@ This module deploys a storage account table service | Output Name | Type | Description | | :-- | :-- | :-- | -| `tableServicesName` | string | The name of the deployed table service | -| `tableServicesResourceGroup` | string | The resource group of the deployed table service | -| `tableServicesResourceId` | string | The resource ID of the deployed table service | +| `name` | string | The name of the deployed table service | +| `resourceGroupName` | string | The resource group of the deployed table service | +| `resourceId` | string | The resource ID of the deployed table service | ## Template references diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep index 972418fc6a..1f81be35c9 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep @@ -30,10 +30,10 @@ resource table 'Microsoft.Storage/storageAccounts/tableServices/tables@2021-06-0 } @description('The name of the deployed file share service') -output tableName string = table.name +output name string = table.name @description('The resource ID of the deployed file share service') -output tableResourceId string = table.id +output resourceId string = table.id @description('The resource group of the deployed file share service') -output tableResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md index e8e539be89..9c0e3e0401 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md @@ -21,9 +21,9 @@ This module deploys a storage account table | Output Name | Type | Description | | :-- | :-- | :-- | -| `tableName` | string | The name of the deployed file share service | -| `tableResourceGroup` | string | The resource group of the deployed file share service | -| `tableResourceId` | string | The resource ID of the deployed file share service | +| `name` | string | The name of the deployed file share service | +| `resourceGroupName` | string | The resource group of the deployed file share service | +| `resourceId` | string | The resource ID of the deployed file share service | ## Template references diff --git a/arm/Microsoft.Synapse/privateLinkHubs/deploy.bicep b/arm/Microsoft.Synapse/privateLinkHubs/deploy.bicep index c67c5a85d1..2b44faff0a 100644 --- a/arm/Microsoft.Synapse/privateLinkHubs/deploy.bicep +++ b/arm/Microsoft.Synapse/privateLinkHubs/deploy.bicep @@ -59,10 +59,10 @@ module privateLinkHub_privateEndpoints '.bicep/nested_privateEndpoint.bicep' = [ }] @description('The resource ID of the deployed Synapse Private Link Hub.') -output privateLinkHubResourceId string = privateLinkHub.id +output resourceId string = privateLinkHub.id @description('The name of the deployed Synapse Private Link Hub.') -output privateLinkHubName string = privateLinkHub.name +output name string = privateLinkHub.name @description('The resource group of the deployed Synapse Private Link Hub.') -output privateLinkHubResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Synapse/privateLinkHubs/readme.md b/arm/Microsoft.Synapse/privateLinkHubs/readme.md index b343edf101..0c3aac2746 100644 --- a/arm/Microsoft.Synapse/privateLinkHubs/readme.md +++ b/arm/Microsoft.Synapse/privateLinkHubs/readme.md @@ -102,9 +102,9 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `privateLinkHubName` | string | The name of the deployed Synapse Private Link Hub. | -| `privateLinkHubResourceGroup` | string | The resource group of the deployed Synapse Private Link Hub. | -| `privateLinkHubResourceId` | string | The resource ID of the deployed Synapse Private Link Hub. | +| `name` | string | The name of the deployed Synapse Private Link Hub. | +| `resourceGroupName` | string | The resource group of the deployed Synapse Private Link Hub. | +| `resourceId` | string | The resource ID of the deployed Synapse Private Link Hub. | ## Template references @@ -112,4 +112,4 @@ Tag names and tag values can be provided as needed. A tag can be left without a - [Privateendpoints](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-03-01/privateEndpoints) - [Privateendpoints/Privatednszonegroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-03-01/privateEndpoints/privateDnsZoneGroups) - [Privatelinkhubs](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Synapse/2021-06-01/privateLinkHubs) -- [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.VirtualMachineImages/imageTemplates/deploy.bicep b/arm/Microsoft.VirtualMachineImages/imageTemplates/deploy.bicep index cd5552ce0a..84dd37173e 100644 --- a/arm/Microsoft.VirtualMachineImages/imageTemplates/deploy.bicep +++ b/arm/Microsoft.VirtualMachineImages/imageTemplates/deploy.bicep @@ -132,7 +132,7 @@ resource imageTemplate 'Microsoft.VirtualMachineImages/imageTemplates@2020-02-14 identity: { type: 'UserAssigned' userAssignedIdentities: { - '${resourceId(userMsiResourceGroup, 'Microsoft.ManagedIdentity/userAssignedIdentities', userMsiName)}': {} + '${az.resourceId(userMsiResourceGroup, 'Microsoft.ManagedIdentity/userAssignedIdentities', userMsiName)}': {} } } properties: { @@ -167,13 +167,13 @@ module imageTemplate_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, ind }] @description('The resource ID of the image template') -output imageTemplateResourceId string = imageTemplate.id +output resourceId string = imageTemplate.id @description('The resource group the image template was deployed into') -output imageTemplateResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the image template') -output imageTemplateName string = imageTemplate.name +output name string = imageTemplate.name @description('The command to run in order to trigger the image build') output runThisCommand string = 'Invoke-AzResourceAction -ResourceName ${imageTemplate.name} -ResourceGroupName ${resourceGroup().name} -ResourceType Microsoft.VirtualMachineImages/imageTemplates -Action Run -Force' diff --git a/arm/Microsoft.VirtualMachineImages/imageTemplates/readme.md b/arm/Microsoft.VirtualMachineImages/imageTemplates/readme.md index 772d52e2f1..7b7897d5a3 100644 --- a/arm/Microsoft.VirtualMachineImages/imageTemplates/readme.md +++ b/arm/Microsoft.VirtualMachineImages/imageTemplates/readme.md @@ -111,13 +111,13 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `imageTemplateName` | string | The name of the image template | -| `imageTemplateResourceGroup` | string | The resource group the image template was deployed into | -| `imageTemplateResourceId` | string | The resource ID of the image template | +| `name` | string | The name of the image template | +| `resourceGroupName` | string | The resource group the image template was deployed into | +| `resourceId` | string | The resource ID of the image template | | `runThisCommand` | string | The command to run in order to trigger the image build | ## 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) diff --git a/arm/Microsoft.Web/connections/deploy.bicep b/arm/Microsoft.Web/connections/deploy.bicep index c0f7d7f930..2f9aac136b 100644 --- a/arm/Microsoft.Web/connections/deploy.bicep +++ b/arm/Microsoft.Web/connections/deploy.bicep @@ -94,10 +94,10 @@ module connection_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) }] @description('The resource ID of the connection') -output connectionResourceId string = connection.id +output resourceId string = connection.id @description('The resource group the connection was deployed into') -output connectionResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the connection') -output connectionName string = connection.name +output name string = connection.name diff --git a/arm/Microsoft.Web/connections/readme.md b/arm/Microsoft.Web/connections/readme.md index f79acfc63f..9293893017 100644 --- a/arm/Microsoft.Web/connections/readme.md +++ b/arm/Microsoft.Web/connections/readme.md @@ -125,12 +125,12 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `connectionName` | string | The name of the connection | -| `connectionResourceGroup` | string | The resource group the connection was deployed into | -| `connectionResourceId` | string | The resource ID of the connection | +| `name` | string | The name of the connection | +| `resourceGroupName` | string | The resource group the connection was deployed into | +| `resourceId` | string | The resource ID of the connection | ## Template references - [Connections](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Web/2016-06-01/connections) - [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.Web/hostingEnvironments/deploy.bicep b/arm/Microsoft.Web/hostingEnvironments/deploy.bicep index 01f986b77e..a72da47c36 100644 --- a/arm/Microsoft.Web/hostingEnvironments/deploy.bicep +++ b/arm/Microsoft.Web/hostingEnvironments/deploy.bicep @@ -188,10 +188,10 @@ module appServiceEnvironment_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignm }] @description('The resource ID of the app service environment') -output appServiceEnvironmentResourceId string = appServiceEnvironment.id +output resourceId string = appServiceEnvironment.id @description('The resource group the app service environment was deployed into') -output appServiceEnvironmentResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the app service environment') -output appServiceEnvironmentName string = appServiceEnvironment.name +output name string = appServiceEnvironment.name diff --git a/arm/Microsoft.Web/hostingEnvironments/readme.md b/arm/Microsoft.Web/hostingEnvironments/readme.md index c64de59ad2..fc7b8ee967 100644 --- a/arm/Microsoft.Web/hostingEnvironments/readme.md +++ b/arm/Microsoft.Web/hostingEnvironments/readme.md @@ -135,13 +135,13 @@ workerPools can have two properties workerSize and workerCount: | Output Name | Type | Description | | :-- | :-- | :-- | -| `appServiceEnvironmentName` | string | The name of the app service environment | -| `appServiceEnvironmentResourceGroup` | string | The resource group the app service environment was deployed into | -| `appServiceEnvironmentResourceId` | string | The resource ID of the app service environment | +| `name` | string | The name of the app service environment | +| `resourceGroupName` | string | The resource group the app service environment was deployed into | +| `resourceId` | string | The resource ID of the app service environment | ## Template references - [Diagnosticsettings](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Insights/2021-05-01-preview/diagnosticSettings) - [Hostingenvironments](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Web/2021-02-01/hostingEnvironments) - [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.Web/serverfarms/deploy.bicep b/arm/Microsoft.Web/serverfarms/deploy.bicep index 9807621112..a1a995852d 100644 --- a/arm/Microsoft.Web/serverfarms/deploy.bicep +++ b/arm/Microsoft.Web/serverfarms/deploy.bicep @@ -101,10 +101,10 @@ module appServicePlan_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, in }] @description('The resource group the app service plan was deployed into') -output appServicePlanResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The name of the app service plan') -output appServicePlanName string = appServicePlan.name +output name string = appServicePlan.name @description('The resource ID of the app service plan') -output appServicePlanResourceId string = appServicePlan.id +output resourceId string = appServicePlan.id diff --git a/arm/Microsoft.Web/serverfarms/readme.md b/arm/Microsoft.Web/serverfarms/readme.md index 0b53e446b0..784b15dcdf 100644 --- a/arm/Microsoft.Web/serverfarms/readme.md +++ b/arm/Microsoft.Web/serverfarms/readme.md @@ -86,12 +86,12 @@ Tag names and tag values can be provided as needed. A tag can be left without a | Output Name | Type | Description | | :-- | :-- | :-- | -| `appServicePlanName` | string | The name of the app service plan | -| `appServicePlanResourceGroup` | string | The resource group the app service plan was deployed into | -| `appServicePlanResourceId` | string | The resource ID of the app service plan | +| `name` | string | The name of the app service plan | +| `resourceGroupName` | string | The resource group the app service plan was deployed into | +| `resourceId` | string | The resource ID of the app service plan | ## Template references - [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) - [Serverfarms](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Web/2021-02-01/serverfarms) diff --git a/arm/Microsoft.Web/sites/.bicep/nested_components.bicep b/arm/Microsoft.Web/sites/.bicep/nested_components.bicep index 5bec3c7561..4bc7b9f6bd 100644 --- a/arm/Microsoft.Web/sites/.bicep/nested_components.bicep +++ b/arm/Microsoft.Web/sites/.bicep/nested_components.bicep @@ -72,10 +72,10 @@ resource appInsights_lock 'Microsoft.Authorization/locks@2017-04-01' = if (lock } @description('The name of the application insights component.') -output appInsightsName string = appInsights.name +output name string = appInsights.name @description('The resource ID of the application insights component.') -output appInsightsResourceId string = appInsights.id +output resourceId string = appInsights.id @description('The resource group the application insights component was deployed into.') -output appInsightsResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Web/sites/.bicep/nested_serverfarms.bicep b/arm/Microsoft.Web/sites/.bicep/nested_serverfarms.bicep index f2b861b3fc..06d715a528 100644 --- a/arm/Microsoft.Web/sites/.bicep/nested_serverfarms.bicep +++ b/arm/Microsoft.Web/sites/.bicep/nested_serverfarms.bicep @@ -79,10 +79,10 @@ resource appServicePlan_lock 'Microsoft.Authorization/locks@2017-04-01' = if (lo } @description('The name of the app service plan.') -output appServicePlanName string = appServicePlan.name +output name string = appServicePlan.name @description('The resource ID of the app service plan.') -output appServicePlanResourceId string = appServicePlan.id +output resourceId string = appServicePlan.id @description('The resource group the app service plan was deployed into.') -output appServicePlanResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Web/sites/config/deploy.bicep b/arm/Microsoft.Web/sites/config/deploy.bicep index 3bf2845fb8..5f04f840aa 100644 --- a/arm/Microsoft.Web/sites/config/deploy.bicep +++ b/arm/Microsoft.Web/sites/config/deploy.bicep @@ -53,20 +53,20 @@ resource config 'Microsoft.Web/sites/config@2021-02-01' = { name: name parent: app properties: { - AzureWebJobsStorage: !empty(storageAccountId) ? 'DefaultEndpointsProtocol=https;AccountName=${storageAccount.name};AccountKey=${storageAccount.listKeys().keys[0].value};' : any(null) - AzureWebJobsDashboard: !empty(storageAccountId) ? 'DefaultEndpointsProtocol=https;AccountName=${storageAccount.name};AccountKey=${storageAccount.listKeys().keys[0].value};' : any(null) - FUNCTIONS_EXTENSION_VERSION: app.kind == 'functionapp' && !empty(functionsExtensionVersion) ? functionsExtensionVersion : any(null) - FUNCTIONS_WORKER_RUNTIME: app.kind == 'functionapp' && !empty(functionsWorkerRuntime) ? functionsWorkerRuntime : any(null) - APPINSIGHTS_INSTRUMENTATIONKEY: !empty(appInsightId) ? appInsight.properties.InstrumentationKey : '' - APPLICATIONINSIGHTS_CONNECTION_STRING: !empty(appInsightId) ? appInsight.properties.ConnectionString : '' + AzureWebJobsStorage: !empty(storageAccountId) ? 'DefaultEndpointsProtocol=https;AccountName=${storageAccount.name};AccountKey=${storageAccount.listKeys().keys[0].value};' : any(null) + AzureWebJobsDashboard: !empty(storageAccountId) ? 'DefaultEndpointsProtocol=https;AccountName=${storageAccount.name};AccountKey=${storageAccount.listKeys().keys[0].value};' : any(null) + FUNCTIONS_EXTENSION_VERSION: app.kind == 'functionapp' && !empty(functionsExtensionVersion) ? functionsExtensionVersion : any(null) + FUNCTIONS_WORKER_RUNTIME: app.kind == 'functionapp' && !empty(functionsWorkerRuntime) ? functionsWorkerRuntime : any(null) + APPINSIGHTS_INSTRUMENTATIONKEY: !empty(appInsightId) ? appInsight.properties.InstrumentationKey : '' + APPLICATIONINSIGHTS_CONNECTION_STRING: !empty(appInsightId) ? appInsight.properties.ConnectionString : '' } } @description('The name of the site config.') -output configName string = config.name +output name string = config.name @description('The resource ID of the site config.') -output configResourceId string = config.id +output resourceId string = config.id @description('The resource group the site config was deployed into.') -output configResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name diff --git a/arm/Microsoft.Web/sites/config/readme.md b/arm/Microsoft.Web/sites/config/readme.md index cb8a04a913..6123166197 100644 --- a/arm/Microsoft.Web/sites/config/readme.md +++ b/arm/Microsoft.Web/sites/config/readme.md @@ -24,9 +24,9 @@ This module deploys a site config resource. | Output Name | Type | Description | | :-- | :-- | :-- | -| `configName` | string | The name of the site config. | -| `configResourceGroup` | string | The resource group the site config was deployed into. | -| `configResourceId` | string | The resource ID of the site config. | +| `name` | string | The name of the site config. | +| `resourceGroupName` | string | The resource group the site config was deployed into. | +| `resourceId` | string | The resource ID of the site config. | ## Template references diff --git a/arm/Microsoft.Web/sites/deploy.bicep b/arm/Microsoft.Web/sites/deploy.bicep index 54e080eae8..3f56a501a5 100644 --- a/arm/Microsoft.Web/sites/deploy.bicep +++ b/arm/Microsoft.Web/sites/deploy.bicep @@ -194,7 +194,7 @@ resource app 'Microsoft.Web/sites@2020-12-01' = { tags: tags identity: identity properties: { - serverFarmId: !empty(appServicePlanId) ? appServicePlanExisting.id : appServicePlan.outputs.appServicePlanResourceId + serverFarmId: !empty(appServicePlanId) ? appServicePlanExisting.id : appServicePlan.outputs.resourceId httpsOnly: httpsOnly hostingEnvironmentProfile: !empty(appServiceEnvironmentId) ? { id: appServiceEnvironmentId @@ -210,7 +210,7 @@ module app_appsettings 'config/deploy.bicep' = { name: 'appsettings' appName: app.name storageAccountId: !empty(storageAccountId) ? storageAccountId : '' - appInsightId: !empty(appInsightId) ? appInsightId : !empty(appInsightObject) ? appInsight.outputs.appInsightsResourceId : '' + appInsightId: !empty(appInsightId) ? appInsightId : !empty(appInsightObject) ? appInsight.outputs.resourceId : '' functionsWorkerRuntime: !empty(functionsWorkerRuntime) ? functionsWorkerRuntime : '' functionsExtensionVersion: !empty(functionsExtensionVersion) ? functionsExtensionVersion : '~3' } @@ -258,13 +258,13 @@ module app_privateEndpoint '.bicep/nested_privateEndpoint.bicep' = [for (private }] @description('The name of the site.') -output siteName string = app.name +output name string = app.name @description('The resource ID of the site.') -output siteResourceId string = app.id +output resourceId string = app.id @description('The resource group the site was deployed into.') -output siteResourceGroup string = resourceGroup().name +output resourceGroupName string = resourceGroup().name @description('The principal ID of the system assigned identity.') output systemAssignedPrincipalId string = systemAssignedIdentity && contains(app.identity, 'principalId') ? app.identity.principalId : '' diff --git a/arm/Microsoft.Web/sites/readme.md b/arm/Microsoft.Web/sites/readme.md index 70b25f0c69..fb2828ffba 100644 --- a/arm/Microsoft.Web/sites/readme.md +++ b/arm/Microsoft.Web/sites/readme.md @@ -177,9 +177,9 @@ You can specify multiple user assigned identities to a resource by providing add | Output Name | Type | Description | | :-- | :-- | :-- | -| `siteName` | string | The name of the site. | -| `siteResourceGroup` | string | The resource group the site was deployed into. | -| `siteResourceId` | string | The resource ID of the site. | +| `name` | string | The name of the site. | +| `resourceGroupName` | string | The resource group the site was deployed into. | +| `resourceId` | string | The resource ID of the site. | | `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. | ## Template references @@ -190,6 +190,6 @@ 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-03-01/privateEndpoints) - [Privateendpoints/Privatednszonegroups](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Network/2021-03-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) - [Serverfarms](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Web/2021-02-01/serverfarms) - [Sites](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Web/2020-12-01/sites)