diff --git a/arm/Microsoft.AAD/DomainServices/deploy.bicep b/arm/Microsoft.AAD/DomainServices/deploy.bicep index 08c3dc662b..bd42527189 100644 --- a/arm/Microsoft.AAD/DomainServices/deploy.bicep +++ b/arm/Microsoft.AAD/DomainServices/deploy.bicep @@ -18,10 +18,10 @@ param location string = resourceGroup().location @description('Optional. Additional replica set for the managed domain.') param replicaSets array = [] -@description('Conditional. Required if secure LDAP is enabled and must be valid more than 30 days. The certificate required to configure Secure LDAP. Should be a base64encoded representation of the certificate PFX file.') +@description('Conditional. The certificate required to configure Secure LDAP. Should be a base64encoded representation of the certificate PFX file. Required if secure LDAP is enabled and must be valid more than 30 days.') param pfxCertificate string = '' -@description('Conditional. Required if secure LDAP is enabled. The password to decrypt the provided Secure LDAP certificate PFX file.') +@description('Conditional. The password to decrypt the provided Secure LDAP certificate PFX file. Required if secure LDAP is enabled.') @secure() param pfxCertificatePassword string = '' diff --git a/arm/Microsoft.AAD/DomainServices/readme.md b/arm/Microsoft.AAD/DomainServices/readme.md index 3cec6e0d79..29eca0445b 100644 --- a/arm/Microsoft.AAD/DomainServices/readme.md +++ b/arm/Microsoft.AAD/DomainServices/readme.md @@ -28,8 +28,8 @@ This template deploys Azure Active Directory Domain Services (AADDS). **Conditional parameters** | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | -| `pfxCertificate` | string | `''` | Required if secure LDAP is enabled and must be valid more than 30 days. The certificate required to configure Secure LDAP. Should be a base64encoded representation of the certificate PFX file. | -| `pfxCertificatePassword` | secureString | `''` | Required if secure LDAP is enabled. The password to decrypt the provided Secure LDAP certificate PFX file. | +| `pfxCertificate` | string | `''` | The certificate required to configure Secure LDAP. Should be a base64encoded representation of the certificate PFX file. Required if secure LDAP is enabled and must be valid more than 30 days. | +| `pfxCertificatePassword` | secureString | `''` | The password to decrypt the provided Secure LDAP certificate PFX file. Required if secure LDAP is enabled. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep b/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep index 615c0c5595..b2b25a4fbb 100644 --- a/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep +++ b/arm/Microsoft.ApiManagement/service/identityProviders/deploy.bicep @@ -13,10 +13,10 @@ param identityProviderAllowedTenants array = [] @description('Optional. OpenID Connect discovery endpoint hostname for AAD or AAD B2C.') param identityProviderAuthority string = '' -@description('Optional. Client ID of the Application in the external Identity Provider. Required if identity provider is used.') +@description('Conditional. Client ID of the Application in the external Identity Provider. Required if identity provider is used.') param identityProviderClientId string = '' -@description('Optional. Client secret of the Application in external Identity Provider, used to authenticate login request. Required if identity provider is used.') +@description('Conditional. Client secret of the Application in external Identity Provider, used to authenticate login request. Required if identity provider is used.') @secure() param identityProviderClientSecret string = '' diff --git a/arm/Microsoft.ApiManagement/service/identityProviders/readme.md b/arm/Microsoft.ApiManagement/service/identityProviders/readme.md index b766571387..b0cbbbc6e6 100644 --- a/arm/Microsoft.ApiManagement/service/identityProviders/readme.md +++ b/arm/Microsoft.ApiManagement/service/identityProviders/readme.md @@ -22,9 +22,11 @@ This module deploys API Management Service Identity Provider. | `name` | string | Identity provider name. | **Conditional parameters** -| Parameter Name | Type | Description | -| :-- | :-- | :-- | -| `apiManagementServiceName` | string | The name of the parent API Management service. Required if the template is used in a standalone deployment. | +| Parameter Name | Type | Default Value | Description | +| :-- | :-- | :-- | :-- | +| `apiManagementServiceName` | string | | The name of the parent API Management service. Required if the template is used in a standalone deployment. | +| `identityProviderClientId` | string | `''` | Client ID of the Application in the external Identity Provider. Required if identity provider is used. | +| `identityProviderClientSecret` | secureString | `''` | Client secret of the Application in external Identity Provider, used to authenticate login request. Required if identity provider is used. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | @@ -33,8 +35,6 @@ This module deploys API Management Service Identity Provider. | `enableIdentityProviders` | bool | `False` | | Used to enable the deployment of the identityProviders child resource. | | `identityProviderAllowedTenants` | array | `[]` | | List of Allowed Tenants when configuring Azure Active Directory login. - string. | | `identityProviderAuthority` | string | `''` | | OpenID Connect discovery endpoint hostname for AAD or AAD B2C. | -| `identityProviderClientId` | string | `''` | | Client ID of the Application in the external Identity Provider. Required if identity provider is used. | -| `identityProviderClientSecret` | secureString | `''` | | Client secret of the Application in external Identity Provider, used to authenticate login request. Required if identity provider is used. | | `identityProviderPasswordResetPolicyName` | string | `''` | | Password Reset Policy Name. Only applies to AAD B2C Identity Provider. | | `identityProviderProfileEditingPolicyName` | string | `''` | | Profile Editing Policy Name. Only applies to AAD B2C Identity Provider. | | `identityProviderSignInPolicyName` | string | `''` | | Signin Policy Name. Only applies to AAD B2C Identity Provider. | diff --git a/arm/Microsoft.Automation/automationAccounts/jobSchedules/deploy.bicep b/arm/Microsoft.Automation/automationAccounts/jobSchedules/deploy.bicep index 16d926aef4..d0e4961052 100644 --- a/arm/Microsoft.Automation/automationAccounts/jobSchedules/deploy.bicep +++ b/arm/Microsoft.Automation/automationAccounts/jobSchedules/deploy.bicep @@ -1,7 +1,7 @@ @description('Optional. Name of the Automation Account job schedule. Must be a GUID. If not provided, a new GUID is generated.') param name string = newGuid() -@description('Conditional. Name of the parent Automation Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Automation Account. Required if the template is used in a standalone deployment.') param automationAccountName string @description('Required. The runbook property associated with the entity.') diff --git a/arm/Microsoft.Automation/automationAccounts/jobSchedules/readme.md b/arm/Microsoft.Automation/automationAccounts/jobSchedules/readme.md index 142509a5f2..f859ea827c 100644 --- a/arm/Microsoft.Automation/automationAccounts/jobSchedules/readme.md +++ b/arm/Microsoft.Automation/automationAccounts/jobSchedules/readme.md @@ -25,7 +25,7 @@ This module deploys an Azure Automation Account Job Schedule. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `automationAccountName` | string | Name of the parent Automation Account. Required if the template is used in a standalone deployment. | +| `automationAccountName` | string | The name of the parent Automation Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Automation/automationAccounts/modules/deploy.bicep b/arm/Microsoft.Automation/automationAccounts/modules/deploy.bicep index 72425995ee..6d562536a0 100644 --- a/arm/Microsoft.Automation/automationAccounts/modules/deploy.bicep +++ b/arm/Microsoft.Automation/automationAccounts/modules/deploy.bicep @@ -1,7 +1,7 @@ @description('Required. Name of the Automation Account module.') param name string -@description('Conditional. Name of the parent Automation Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Automation Account. Required if the template is used in a standalone deployment.') param automationAccountName string @description('Required. Module package uri, e.g. https://www.powershellgallery.com/api/v2/package.') diff --git a/arm/Microsoft.Automation/automationAccounts/modules/readme.md b/arm/Microsoft.Automation/automationAccounts/modules/readme.md index b4eea34fdf..89e4e7c5bb 100644 --- a/arm/Microsoft.Automation/automationAccounts/modules/readme.md +++ b/arm/Microsoft.Automation/automationAccounts/modules/readme.md @@ -25,7 +25,7 @@ This module deploys an Azure Automation Account Module. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `automationAccountName` | string | Name of the parent Automation Account. Required if the template is used in a standalone deployment. | +| `automationAccountName` | string | The name of the parent Automation Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Automation/automationAccounts/runbooks/deploy.bicep b/arm/Microsoft.Automation/automationAccounts/runbooks/deploy.bicep index 712ad6f8f5..1ee943deca 100644 --- a/arm/Microsoft.Automation/automationAccounts/runbooks/deploy.bicep +++ b/arm/Microsoft.Automation/automationAccounts/runbooks/deploy.bicep @@ -1,7 +1,7 @@ @description('Required. Name of the Automation Account runbook.') param name string -@description('Conditional. Name of the parent Automation Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Automation Account. Required if the template is used in a standalone deployment.') param automationAccountName string @allowed([ diff --git a/arm/Microsoft.Automation/automationAccounts/runbooks/readme.md b/arm/Microsoft.Automation/automationAccounts/runbooks/readme.md index 5e820dceb7..46a5c293f4 100644 --- a/arm/Microsoft.Automation/automationAccounts/runbooks/readme.md +++ b/arm/Microsoft.Automation/automationAccounts/runbooks/readme.md @@ -25,7 +25,7 @@ This module deploys an Azure Automation Account Runbook. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `automationAccountName` | string | Name of the parent Automation Account. Required if the template is used in a standalone deployment. | +| `automationAccountName` | string | The name of the parent Automation Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Automation/automationAccounts/schedules/deploy.bicep b/arm/Microsoft.Automation/automationAccounts/schedules/deploy.bicep index 8bdd4cbc70..4c4900d308 100644 --- a/arm/Microsoft.Automation/automationAccounts/schedules/deploy.bicep +++ b/arm/Microsoft.Automation/automationAccounts/schedules/deploy.bicep @@ -1,7 +1,7 @@ @description('Required. Name of the Automation Account schedule.') param name string -@description('Conditional. Name of the parent Automation Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Automation Account. Required if the template is used in a standalone deployment.') param automationAccountName string @description('Optional. The properties of the create Advanced Schedule.') diff --git a/arm/Microsoft.Automation/automationAccounts/schedules/readme.md b/arm/Microsoft.Automation/automationAccounts/schedules/readme.md index 7543e55038..9b8d6f7294 100644 --- a/arm/Microsoft.Automation/automationAccounts/schedules/readme.md +++ b/arm/Microsoft.Automation/automationAccounts/schedules/readme.md @@ -24,7 +24,7 @@ This module deploys an Azure Automation Account Schedule. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `automationAccountName` | string | Name of the parent Automation Account. Required if the template is used in a standalone deployment. | +| `automationAccountName` | string | The name of the parent Automation Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/deploy.bicep b/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/deploy.bicep index 9bb754b499..0a77509b11 100644 --- a/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/deploy.bicep +++ b/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/deploy.bicep @@ -1,7 +1,7 @@ @description('Required. The name of the Deployment schedule.') param name string -@description('Conditional. Name of the parent Automation Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Automation Account. Required if the template is used in a standalone deployment.') param automationAccountName string @description('Required. The operating system to be configured by the deployment schedule.') diff --git a/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/readme.md b/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/readme.md index 80d9034ba9..c532bad611 100644 --- a/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/readme.md +++ b/arm/Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/readme.md @@ -27,7 +27,7 @@ This module deploys an Azure Automation Account Software update Configuration. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `automationAccountName` | string | Name of the parent Automation Account. Required if the template is used in a standalone deployment. | +| `automationAccountName` | string | The name of the parent Automation Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Automation/automationAccounts/variables/deploy.bicep b/arm/Microsoft.Automation/automationAccounts/variables/deploy.bicep index 625426e439..f9b7b324f8 100644 --- a/arm/Microsoft.Automation/automationAccounts/variables/deploy.bicep +++ b/arm/Microsoft.Automation/automationAccounts/variables/deploy.bicep @@ -1,4 +1,4 @@ -@sys.description('Conditional. Name of the parent Automation Account. Required if the template is used in a standalone deployment.') +@sys.description('Conditional. The name of the parent Automation Account. Required if the template is used in a standalone deployment.') param automationAccountName string @sys.description('Required. The name of the variable.') diff --git a/arm/Microsoft.Automation/automationAccounts/variables/readme.md b/arm/Microsoft.Automation/automationAccounts/variables/readme.md index 4865b16ec3..c5349e116b 100644 --- a/arm/Microsoft.Automation/automationAccounts/variables/readme.md +++ b/arm/Microsoft.Automation/automationAccounts/variables/readme.md @@ -25,7 +25,7 @@ This module deploys a variable to an Azure Automation Account. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `automationAccountName` | string | Name of the parent Automation Account. Required if the template is used in a standalone deployment. | +| `automationAccountName` | string | The name of the parent Automation Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Batch/batchAccounts/deploy.bicep b/arm/Microsoft.Batch/batchAccounts/deploy.bicep index 420ed3aee1..46e6923030 100644 --- a/arm/Microsoft.Batch/batchAccounts/deploy.bicep +++ b/arm/Microsoft.Batch/batchAccounts/deploy.bicep @@ -80,13 +80,13 @@ param allowedAuthenticationModes array = [] @description('Optional. Type of the key source.') param encryptionKeySource string = 'Microsoft.Batch' -@description('Conditional. Full path to the versioned secret. Must be set if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`.') +@description('Conditional. Full path to the versioned secret. Required if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`.') param encryptionKeyIdentifier string = '' -@description('Conditional. The resource ID of the Azure key vault associated with the Batch account. Must be set if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`.') +@description('Conditional. The resource ID of the Azure key vault associated with the Batch account. Required if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`.') param keyVaultResourceId string = '' -@description('Conditional. The URL of the Azure key vault associated with the Batch account. Must be set if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`.') +@description('Conditional. The URL of the Azure key vault associated with the Batch account. Required if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`.') param keyVaultUri string = '' @description('Optional. Enable telemetry via the Customer Usage Attribution ID (GUID).') diff --git a/arm/Microsoft.Batch/batchAccounts/readme.md b/arm/Microsoft.Batch/batchAccounts/readme.md index 8c860c96f5..e7fe1aff69 100644 --- a/arm/Microsoft.Batch/batchAccounts/readme.md +++ b/arm/Microsoft.Batch/batchAccounts/readme.md @@ -25,9 +25,9 @@ **Conditional parameters** | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | -| `encryptionKeyIdentifier` | string | `''` | Full path to the versioned secret. Must be set if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`. | -| `keyVaultResourceId` | string | `''` | The resource ID of the Azure key vault associated with the Batch account. Must be set if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`. | -| `keyVaultUri` | string | `''` | The URL of the Azure key vault associated with the Batch account. Must be set if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`. | +| `encryptionKeyIdentifier` | string | `''` | Full path to the versioned secret. Required if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`. | +| `keyVaultResourceId` | string | `''` | The resource ID of the Azure key vault associated with the Batch account. Required if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`. | +| `keyVaultUri` | string | `''` | The URL of the Azure key vault associated with the Batch account. Required if `encryptionKeySource` is set to `Microsoft.KeyVault` or `poolAllocationMode` is set to `UserSubscription`. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.CognitiveServices/accounts/deploy.bicep b/arm/Microsoft.CognitiveServices/accounts/deploy.bicep index 86ea5dca02..d80f812ff8 100644 --- a/arm/Microsoft.CognitiveServices/accounts/deploy.bicep +++ b/arm/Microsoft.CognitiveServices/accounts/deploy.bicep @@ -70,7 +70,7 @@ param diagnosticEventHubAuthorizationRuleId string = '' @description('Optional. Name of the diagnostic event hub within the namespace to which logs are streamed. Without this, an event hub is created for each log category.') param diagnosticEventHubName string = '' -@description('Optional. Subdomain name used for token-based authentication. Required if \'networkAcls\' are set.') +@description('Conditional. Subdomain name used for token-based authentication. Required if \'networkAcls\' are set.') param customSubDomainName string = '' @description('Optional. Subdomain name used for token-based authentication. Must be set if \'networkAcls\' are set.') diff --git a/arm/Microsoft.CognitiveServices/accounts/readme.md b/arm/Microsoft.CognitiveServices/accounts/readme.md index 338d7e1c8d..71946433aa 100644 --- a/arm/Microsoft.CognitiveServices/accounts/readme.md +++ b/arm/Microsoft.CognitiveServices/accounts/readme.md @@ -28,12 +28,16 @@ This module deploys different kinds of cognitive services resources | `kind` | string | `[AnomalyDetector, Bing.Autosuggest.v7, Bing.CustomSearch, Bing.EntitySearch, Bing.Search.v7, Bing.SpellCheck.v7, CognitiveServices, ComputerVision, ContentModerator, CustomVision.Prediction, CustomVision.Training, Face, FormRecognizer, ImmersiveReader, Internal.AllInOne, LUIS, LUIS.Authoring, Personalizer, QnAMaker, SpeechServices, TextAnalytics, TextTranslation]` | Kind of the Cognitive Services. Use 'Get-AzCognitiveServicesAccountSku' to determine a valid combinations of 'kind' and 'sku' for your Azure region. | | `name` | string | | The name of Cognitive Services account. | +**Conditional parameters** +| Parameter Name | Type | Default Value | Description | +| :-- | :-- | :-- | :-- | +| `customSubDomainName` | string | `''` | Subdomain name used for token-based authentication. Required if 'networkAcls' are set. | + **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | | :-- | :-- | :-- | :-- | :-- | | `allowedFqdnList` | array | `[]` | | List of allowed FQDN. | | `apiProperties` | object | `{object}` | | The API properties for special APIs. | -| `customSubDomainName` | string | `''` | | Subdomain name used for token-based authentication. Required if 'networkAcls' are set. | | `diagnosticEventHubAuthorizationRuleId` | string | `''` | | Resource ID of the diagnostic event hub authorization rule for the Event Hubs namespace in which the event hub should be created or streamed to. | | `diagnosticEventHubName` | string | `''` | | Name of the diagnostic event hub within the namespace to which logs are streamed. Without this, an event hub is created for each log category. | | `diagnosticLogCategoriesToEnable` | array | `[Audit, RequestResponse]` | `[Audit, RequestResponse]` | The name of logs that will be streamed. | diff --git a/arm/Microsoft.Compute/galleries/images/deploy.bicep b/arm/Microsoft.Compute/galleries/images/deploy.bicep index cf216554c9..64b916d210 100644 --- a/arm/Microsoft.Compute/galleries/images/deploy.bicep +++ b/arm/Microsoft.Compute/galleries/images/deploy.bicep @@ -7,7 +7,7 @@ param enableDefaultTelemetry bool = true @description('Optional. Location for all resources.') param location string = resourceGroup().location -@description('Conditional. Name of the Azure Shared Image Gallery. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Shared Image Gallery. Required if the template is used in a standalone deployment.') @minLength(1) param galleryName string diff --git a/arm/Microsoft.Compute/galleries/images/readme.md b/arm/Microsoft.Compute/galleries/images/readme.md index f00f7ee5b4..b7de5286d8 100644 --- a/arm/Microsoft.Compute/galleries/images/readme.md +++ b/arm/Microsoft.Compute/galleries/images/readme.md @@ -25,7 +25,7 @@ This module deploys an Image Definition in a Shared Image Gallery. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `galleryName` | string | Name of the Azure Shared Image Gallery. Required if the template is used in a standalone deployment. | +| `galleryName` | string | The name of the parent Azure Shared Image Gallery. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep b/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep index 2131906aa6..4680d788a6 100644 --- a/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep +++ b/arm/Microsoft.ContainerService/managedClusters/agentPools/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the managed cluster. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent managed cluster. Required if the template is used in a standalone deployment.') @minLength(1) param managedClusterName string diff --git a/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md b/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md index fe982351e8..85315cb42a 100644 --- a/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md +++ b/arm/Microsoft.ContainerService/managedClusters/agentPools/readme.md @@ -24,7 +24,7 @@ This module deploys an Agent Pool for a Container Service Managed Cluster **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `managedClusterName` | string | Name of the managed cluster. Required if the template is used in a standalone deployment. | +| `managedClusterName` | string | The name of the parent managed cluster. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ContainerService/managedClusters/deploy.bicep b/arm/Microsoft.ContainerService/managedClusters/deploy.bicep index a0adcf38b6..8823f2eed6 100644 --- a/arm/Microsoft.ContainerService/managedClusters/deploy.bicep +++ b/arm/Microsoft.ContainerService/managedClusters/deploy.bicep @@ -131,7 +131,7 @@ param httpApplicationRoutingEnabled bool = false @description('Optional. Specifies whether the ingressApplicationGateway (AGIC) add-on is enabled or not.') param ingressApplicationGatewayEnabled bool = false -@description('Conditional. Required if `ingressApplicationGatewayEnabled` is set to `true`. Specifies the resource ID of connected application gateway.') +@description('Conditional. Specifies the resource ID of connected application gateway. Required if `ingressApplicationGatewayEnabled` is set to `true`.') param appGatewayResourceId string = '' @description('Optional. Specifies whether the aciConnectorLinux add-on is enabled or not.') diff --git a/arm/Microsoft.ContainerService/managedClusters/readme.md b/arm/Microsoft.ContainerService/managedClusters/readme.md index f40c55548f..ce9ff275e9 100644 --- a/arm/Microsoft.ContainerService/managedClusters/readme.md +++ b/arm/Microsoft.ContainerService/managedClusters/readme.md @@ -29,7 +29,7 @@ This module deploys Azure Kubernetes Cluster (AKS). **Conditional parameters** | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | -| `appGatewayResourceId` | string | `''` | Required if `ingressApplicationGatewayEnabled` is set to `true`. Specifies the resource ID of connected application gateway. | +| `appGatewayResourceId` | string | `''` | Specifies the resource ID of connected application gateway. Required if `ingressApplicationGatewayEnabled` is set to `true`. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep index 779487e686..66d24c2fc5 100644 --- a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep +++ b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/deploy.bicep @@ -1,4 +1,4 @@ -@sys.description('Conditional. Name of the Application Group to create the application(s) in. Required if the template is used in a standalone deployment.') +@sys.description('Conditional. The name of the parent Application Group to create the application(s) in. Required if the template is used in a standalone deployment.') param appGroupName string @sys.description('Required. Name of the Application to be created in the Application Group.') diff --git a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md index a61af3b19b..456f17f507 100644 --- a/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md +++ b/arm/Microsoft.DesktopVirtualization/applicationgroups/applications/readme.md @@ -26,7 +26,7 @@ This module deploys AVD Applications. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `appGroupName` | string | Name of the Application Group to create the application(s) in. Required if the template is used in a standalone deployment. | +| `appGroupName` | string | The name of the parent Application Group to create the application(s) in. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep index 46b1c39ffd..803a5ccaf7 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/deploy.bicep @@ -1,7 +1,7 @@ -@description('Conditional. Name of the Cosmos DB database account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Cosmos DB database account. Required if the template is used in a standalone deployment.') param databaseAccountName string -@description('Conditional. Name of the mongodb database. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent mongodb database. Required if the template is used in a standalone deployment.') param mongodbDatabaseName string @description('Required. Name of the collection.') diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md index a106b93d92..7aa22c0020 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/readme.md @@ -26,8 +26,8 @@ This module deploys a collection within a MongoDB. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `databaseAccountName` | string | Name of the Cosmos DB database account. Required if the template is used in a standalone deployment. | -| `mongodbDatabaseName` | string | Name of the mongodb database. Required if the template is used in a standalone deployment. | +| `databaseAccountName` | string | The name of the parent Cosmos DB database account. Required if the template is used in a standalone deployment. | +| `mongodbDatabaseName` | string | The name of the parent mongodb database. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep index 92532e34e2..4bdccc12b1 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Cosmos DB database account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Cosmos DB database account. Required if the template is used in a standalone deployment.') param databaseAccountName string @description('Required. Name of the mongodb database.') diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md index 3496f5e8c2..17cdbd1a44 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/readme.md @@ -25,7 +25,7 @@ This module deploys a MongoDB within a CosmosDB account. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `databaseAccountName` | string | Name of the Cosmos DB database account. Required if the template is used in a standalone deployment. | +| `databaseAccountName` | string | The name of the parent Cosmos DB database account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep index 8b2ee2117a..ca00dbe99e 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/deploy.bicep @@ -1,7 +1,7 @@ -@description('Conditional. Name of the Database Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Database Account. Required if the template is used in a standalone deployment.') param databaseAccountName string -@description('Conditional. Name of the SQL Database. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent SQL Database. Required if the template is used in a standalone deployment.') param sqlDatabaseName string @description('Required. Name of the container.') diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md index ae5ee16130..d545da1c46 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/readme.md @@ -22,8 +22,8 @@ **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `databaseAccountName` | string | Name of the Database Account. Required if the template is used in a standalone deployment. | -| `sqlDatabaseName` | string | Name of the SQL Database. Required if the template is used in a standalone deployment. | +| `databaseAccountName` | string | The name of the parent Database Account. Required if the template is used in a standalone deployment. | +| `sqlDatabaseName` | string | The name of the parent SQL Database. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep index c15474f302..3d5636b4a9 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. ID of the Cosmos DB database account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Database Account. Required if the template is used in a standalone deployment.') param databaseAccountName string @description('Required. Name of the SQL database .') diff --git a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md index ed10b1feab..dec0ffca32 100644 --- a/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md +++ b/arm/Microsoft.DocumentDB/databaseAccounts/sqlDatabases/readme.md @@ -23,7 +23,7 @@ **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `databaseAccountName` | string | ID of the Cosmos DB database account. Required if the template is used in a standalone deployment. | +| `databaseAccountName` | string | The name of the parent Database Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Insights/metricAlerts/deploy.bicep b/arm/Microsoft.Insights/metricAlerts/deploy.bicep index 2813abca4f..e0e180f82f 100644 --- a/arm/Microsoft.Insights/metricAlerts/deploy.bicep +++ b/arm/Microsoft.Insights/metricAlerts/deploy.bicep @@ -48,10 +48,10 @@ param scopes array = [ subscription().id ] -@description('Optional. The resource type of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria.') +@description('Conditional. The resource type of the target resource(s) on which the alert is created/updated. Required if alertCriteriaType is MultipleResourceMultipleMetricCriteria.') param targetResourceType string = '' -@description('Optional. The region of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria.') +@description('Conditional. The region of the target resource(s) on which the alert is created/updated. Required if alertCriteriaType is MultipleResourceMultipleMetricCriteria.') param targetResourceRegion string = '' @description('Optional. The flag that indicates whether the alert should be auto resolved or not.') diff --git a/arm/Microsoft.Insights/metricAlerts/readme.md b/arm/Microsoft.Insights/metricAlerts/readme.md index 0597669fd9..f6f9944f2c 100644 --- a/arm/Microsoft.Insights/metricAlerts/readme.md +++ b/arm/Microsoft.Insights/metricAlerts/readme.md @@ -23,6 +23,12 @@ This module deploys an alert based on metrics. | `criterias` | array | Criterias to trigger the alert. Array of 'Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria' or 'Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria' objects. | | `name` | string | The name of the alert. | +**Conditional parameters** +| Parameter Name | Type | Default Value | Description | +| :-- | :-- | :-- | :-- | +| `targetResourceRegion` | string | `''` | The region of the target resource(s) on which the alert is created/updated. Required if alertCriteriaType is MultipleResourceMultipleMetricCriteria. | +| `targetResourceType` | string | `''` | The resource type of the target resource(s) on which the alert is created/updated. Required if alertCriteriaType is MultipleResourceMultipleMetricCriteria. | + **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | | :-- | :-- | :-- | :-- | :-- | @@ -38,8 +44,6 @@ This module deploys an alert based on metrics. | `scopes` | array | `[[subscription().id]]` | | the list of resource IDs that this metric alert is scoped to. | | `severity` | int | `3` | `[0, 1, 2, 3, 4]` | The severity of the alert. | | `tags` | object | `{object}` | | Tags of the resource. | -| `targetResourceRegion` | string | `''` | | The region of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria. | -| `targetResourceType` | string | `''` | | The resource type of the target resource(s) on which the alert is created/updated. Mandatory for MultipleResourceMultipleMetricCriteria. | | `windowSize` | string | `'PT15M'` | `[PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D]` | the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold. | diff --git a/arm/Microsoft.Insights/privateLinkScopes/scopedResources/deploy.bicep b/arm/Microsoft.Insights/privateLinkScopes/scopedResources/deploy.bicep index 57062f1375..dda15be119 100644 --- a/arm/Microsoft.Insights/privateLinkScopes/scopedResources/deploy.bicep +++ b/arm/Microsoft.Insights/privateLinkScopes/scopedResources/deploy.bicep @@ -2,7 +2,7 @@ @minLength(1) param name string -@description('Conditional. Name of the parent private link scope. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent private link scope. Required if the template is used in a standalone deployment.') @minLength(1) param privateLinkScopeName string diff --git a/arm/Microsoft.Insights/privateLinkScopes/scopedResources/readme.md b/arm/Microsoft.Insights/privateLinkScopes/scopedResources/readme.md index c0411a888c..333341b563 100644 --- a/arm/Microsoft.Insights/privateLinkScopes/scopedResources/readme.md +++ b/arm/Microsoft.Insights/privateLinkScopes/scopedResources/readme.md @@ -25,7 +25,7 @@ This module deploys Insights PrivateLinkScopes ScopedResources. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateLinkScopeName` | string | Name of the parent private link scope. Required if the template is used in a standalone deployment. | +| `privateLinkScopeName` | string | The name of the parent private link scope. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.MachineLearningServices/workspaces/computes/deploy.bicep b/arm/Microsoft.MachineLearningServices/workspaces/computes/deploy.bicep index fa3974d397..57dafe1d81 100644 --- a/arm/Microsoft.MachineLearningServices/workspaces/computes/deploy.bicep +++ b/arm/Microsoft.MachineLearningServices/workspaces/computes/deploy.bicep @@ -1,7 +1,7 @@ // ================ // // Parameters // // ================ // -@sys.description('Conditional. Name of the Machine Learning Workspace. Required if the template is used in a standalone deployment.') +@sys.description('Conditional. The name of the parent Machine Learning Workspace. Required if the template is used in a standalone deployment.') param machineLearningWorkspaceName string @sys.description('Required. Name of the compute.') diff --git a/arm/Microsoft.MachineLearningServices/workspaces/computes/readme.md b/arm/Microsoft.MachineLearningServices/workspaces/computes/readme.md index d43817a79b..034b71a30e 100644 --- a/arm/Microsoft.MachineLearningServices/workspaces/computes/readme.md +++ b/arm/Microsoft.MachineLearningServices/workspaces/computes/readme.md @@ -26,7 +26,7 @@ Attaching a compute is not idempotent and will fail in case you try to redeploy **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `machineLearningWorkspaceName` | string | Name of the Machine Learning Workspace. Required if the template is used in a standalone deployment. | +| `machineLearningWorkspaceName` | string | The name of the parent Machine Learning Workspace. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/deploy.bicep b/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/deploy.bicep index d5c159b648..dd73432d93 100644 --- a/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/deploy.bicep +++ b/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Firewall Policy. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Firewall Policy. Required if the template is used in a standalone deployment.') param firewallPolicyName string @description('Required. The name of the rule collection group to deploy.') diff --git a/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/readme.md b/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/readme.md index 391c294c39..20ddda2b65 100644 --- a/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/readme.md +++ b/arm/Microsoft.Network/firewallPolicies/ruleCollectionGroups/readme.md @@ -25,7 +25,7 @@ This module deploys Network Firewall Policies Rule Collection Groups. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `firewallPolicyName` | string | Name of the Firewall Policy. Required if the template is used in a standalone deployment. | +| `firewallPolicyName` | string | The name of the parent Firewall Policy. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/loadBalancers/backendAddressPools/deploy.bicep b/arm/Microsoft.Network/loadBalancers/backendAddressPools/deploy.bicep index 1dfd69020b..7b71222a1f 100644 --- a/arm/Microsoft.Network/loadBalancers/backendAddressPools/deploy.bicep +++ b/arm/Microsoft.Network/loadBalancers/backendAddressPools/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. The name of the parent parent load balancer. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent load balancer. Required if the template is used in a standalone deployment.') param loadBalancerName string @description('Required. The name of the backend address pool.') diff --git a/arm/Microsoft.Network/loadBalancers/backendAddressPools/readme.md b/arm/Microsoft.Network/loadBalancers/backendAddressPools/readme.md index 4815d6a554..927002a6aa 100644 --- a/arm/Microsoft.Network/loadBalancers/backendAddressPools/readme.md +++ b/arm/Microsoft.Network/loadBalancers/backendAddressPools/readme.md @@ -24,7 +24,7 @@ This module deploys load balancer backend address pools. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `loadBalancerName` | string | The name of the parent parent load balancer. Required if the template is used in a standalone deployment. | +| `loadBalancerName` | string | The name of the parent load balancer. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/loadBalancers/inboundNatRules/deploy.bicep b/arm/Microsoft.Network/loadBalancers/inboundNatRules/deploy.bicep index fc3b14d15e..24edb5b733 100644 --- a/arm/Microsoft.Network/loadBalancers/inboundNatRules/deploy.bicep +++ b/arm/Microsoft.Network/loadBalancers/inboundNatRules/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. The name of the parent parent load balancer. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent load balancer. Required if the template is used in a standalone deployment.') param loadBalancerName string @description('Required. The name of the inbound NAT rule.') diff --git a/arm/Microsoft.Network/loadBalancers/inboundNatRules/readme.md b/arm/Microsoft.Network/loadBalancers/inboundNatRules/readme.md index d003e4e94f..fee70c9b38 100644 --- a/arm/Microsoft.Network/loadBalancers/inboundNatRules/readme.md +++ b/arm/Microsoft.Network/loadBalancers/inboundNatRules/readme.md @@ -26,7 +26,7 @@ This module deploys load balancers inbound NAT rules. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `loadBalancerName` | string | The name of the parent parent load balancer. Required if the template is used in a standalone deployment. | +| `loadBalancerName` | string | The name of the parent load balancer. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/A/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/A/deploy.bicep index 4d3a718324..f8a17941cf 100644 --- a/arm/Microsoft.Network/privateDnsZones/A/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/A/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the A record.') diff --git a/arm/Microsoft.Network/privateDnsZones/A/readme.md b/arm/Microsoft.Network/privateDnsZones/A/readme.md index 9a0f3310c8..4dbaec0520 100644 --- a/arm/Microsoft.Network/privateDnsZones/A/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/A/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone A record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/AAAA/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/AAAA/deploy.bicep index ade34f5505..d9287b6505 100644 --- a/arm/Microsoft.Network/privateDnsZones/AAAA/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/AAAA/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the AAAA record.') diff --git a/arm/Microsoft.Network/privateDnsZones/AAAA/readme.md b/arm/Microsoft.Network/privateDnsZones/AAAA/readme.md index 6ef40b1976..10c4f59722 100644 --- a/arm/Microsoft.Network/privateDnsZones/AAAA/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/AAAA/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone AAAA record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/CNAME/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/CNAME/deploy.bicep index a58d3fdf9f..b6aab9ca2f 100644 --- a/arm/Microsoft.Network/privateDnsZones/CNAME/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/CNAME/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the CNAME record.') diff --git a/arm/Microsoft.Network/privateDnsZones/CNAME/readme.md b/arm/Microsoft.Network/privateDnsZones/CNAME/readme.md index c69d1df551..7098fd450f 100644 --- a/arm/Microsoft.Network/privateDnsZones/CNAME/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/CNAME/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone CNAME record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/MX/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/MX/deploy.bicep index b92116c008..5e3a5d9d0b 100644 --- a/arm/Microsoft.Network/privateDnsZones/MX/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/MX/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the MX record.') diff --git a/arm/Microsoft.Network/privateDnsZones/MX/readme.md b/arm/Microsoft.Network/privateDnsZones/MX/readme.md index b9ec1d55ac..bedbe17a7a 100644 --- a/arm/Microsoft.Network/privateDnsZones/MX/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/MX/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone MX record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/PTR/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/PTR/deploy.bicep index 32781e3590..fdc6d72b3e 100644 --- a/arm/Microsoft.Network/privateDnsZones/PTR/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/PTR/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the PTR record.') diff --git a/arm/Microsoft.Network/privateDnsZones/PTR/readme.md b/arm/Microsoft.Network/privateDnsZones/PTR/readme.md index e80e37eba1..621d28f730 100644 --- a/arm/Microsoft.Network/privateDnsZones/PTR/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/PTR/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone PTR record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/SOA/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/SOA/deploy.bicep index 935715d5af..a77e9d38bb 100644 --- a/arm/Microsoft.Network/privateDnsZones/SOA/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/SOA/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the SOA record.') diff --git a/arm/Microsoft.Network/privateDnsZones/SOA/readme.md b/arm/Microsoft.Network/privateDnsZones/SOA/readme.md index 4fa6f3b8f3..51a6c9fdcb 100644 --- a/arm/Microsoft.Network/privateDnsZones/SOA/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/SOA/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone SOA record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/SRV/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/SRV/deploy.bicep index a2e70b482f..8d417889d8 100644 --- a/arm/Microsoft.Network/privateDnsZones/SRV/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/SRV/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the SRV record.') diff --git a/arm/Microsoft.Network/privateDnsZones/SRV/readme.md b/arm/Microsoft.Network/privateDnsZones/SRV/readme.md index 40a2d5404d..6022d66206 100644 --- a/arm/Microsoft.Network/privateDnsZones/SRV/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/SRV/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone TXT record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/TXT/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/TXT/deploy.bicep index a3589b15ab..9324c6a192 100644 --- a/arm/Microsoft.Network/privateDnsZones/TXT/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/TXT/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Required. The name of the TXT record.') diff --git a/arm/Microsoft.Network/privateDnsZones/TXT/readme.md b/arm/Microsoft.Network/privateDnsZones/TXT/readme.md index 2a3e448000..3c245f67f5 100644 --- a/arm/Microsoft.Network/privateDnsZones/TXT/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/TXT/readme.md @@ -25,7 +25,7 @@ This module deploys a Private DNS Zone TXT record. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/deploy.bicep b/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/deploy.bicep index 3da2a7826b..3f7011834d 100644 --- a/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/deploy.bicep +++ b/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Private DNS zone name. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Private DNS zone. Required if the template is used in a standalone deployment.') param privateDnsZoneName string @description('Optional. The name of the virtual network link.') diff --git a/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/readme.md b/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/readme.md index cf2cb09429..fd06d239f7 100644 --- a/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/readme.md +++ b/arm/Microsoft.Network/privateDnsZones/virtualNetworkLinks/readme.md @@ -24,7 +24,7 @@ This module deploys private dns zone virtual network links. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `privateDnsZoneName` | string | Private DNS zone name. Required if the template is used in a standalone deployment. | +| `privateDnsZoneName` | string | The name of the parent Private DNS zone. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Network/virtualNetworks/subnets/deploy.bicep b/arm/Microsoft.Network/virtualNetworks/subnets/deploy.bicep index 07c727f5dd..fe0dda3d6c 100644 --- a/arm/Microsoft.Network/virtualNetworks/subnets/deploy.bicep +++ b/arm/Microsoft.Network/virtualNetworks/subnets/deploy.bicep @@ -1,7 +1,7 @@ @description('Optional. The Name of the subnet resource.') param name string -@description('Conditional. The name of the parent parent virtual network. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent virtual network. Required if the template is used in a standalone deployment.') param virtualNetworkName string @description('Required. The address prefix for the subnet.') diff --git a/arm/Microsoft.Network/virtualNetworks/subnets/readme.md b/arm/Microsoft.Network/virtualNetworks/subnets/readme.md index 7298e1b33d..8cbf9c34dd 100644 --- a/arm/Microsoft.Network/virtualNetworks/subnets/readme.md +++ b/arm/Microsoft.Network/virtualNetworks/subnets/readme.md @@ -26,7 +26,7 @@ This module deploys a virtual network subnet. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `virtualNetworkName` | string | The name of the parent parent virtual network. Required if the template is used in a standalone deployment. | +| `virtualNetworkName` | string | The name of the parent virtual network. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.OperationalInsights/workspaces/dataSources/deploy.bicep b/arm/Microsoft.OperationalInsights/workspaces/dataSources/deploy.bicep index 84a1306582..9ecbbcb6c4 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/dataSources/deploy.bicep +++ b/arm/Microsoft.OperationalInsights/workspaces/dataSources/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Log Analytics workspace. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment.') param logAnalyticsWorkspaceName string @description('Required. Name of the solution.') diff --git a/arm/Microsoft.OperationalInsights/workspaces/dataSources/readme.md b/arm/Microsoft.OperationalInsights/workspaces/dataSources/readme.md index 2025448ba4..9efd92573a 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/dataSources/readme.md +++ b/arm/Microsoft.OperationalInsights/workspaces/dataSources/readme.md @@ -25,7 +25,7 @@ This template deploys a data source for a Log Analytics workspace. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `logAnalyticsWorkspaceName` | string | Name of the Log Analytics workspace. Required if the template is used in a standalone deployment. | +| `logAnalyticsWorkspaceName` | string | The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.OperationalInsights/workspaces/linkedServices/deploy.bicep b/arm/Microsoft.OperationalInsights/workspaces/linkedServices/deploy.bicep index 856d4d8977..bc67a4e5f5 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/linkedServices/deploy.bicep +++ b/arm/Microsoft.OperationalInsights/workspaces/linkedServices/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Log Analytics workspace. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment.') param logAnalyticsWorkspaceName string @description('Required. Name of the link.') diff --git a/arm/Microsoft.OperationalInsights/workspaces/linkedServices/readme.md b/arm/Microsoft.OperationalInsights/workspaces/linkedServices/readme.md index 6ca4892b41..bb12676827 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/linkedServices/readme.md +++ b/arm/Microsoft.OperationalInsights/workspaces/linkedServices/readme.md @@ -25,7 +25,7 @@ This template deploys a linked service for a Log Analytics workspace. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `logAnalyticsWorkspaceName` | string | Name of the Log Analytics workspace. Required if the template is used in a standalone deployment. | +| `logAnalyticsWorkspaceName` | string | The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.OperationalInsights/workspaces/savedSearches/deploy.bicep b/arm/Microsoft.OperationalInsights/workspaces/savedSearches/deploy.bicep index 8593e064ed..7711526c3c 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/savedSearches/deploy.bicep +++ b/arm/Microsoft.OperationalInsights/workspaces/savedSearches/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Log Analytics workspace. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment.') param logAnalyticsWorkspaceName string @description('Required. Name of the saved search.') diff --git a/arm/Microsoft.OperationalInsights/workspaces/savedSearches/readme.md b/arm/Microsoft.OperationalInsights/workspaces/savedSearches/readme.md index f553c2dd27..b0f6a06e13 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/savedSearches/readme.md +++ b/arm/Microsoft.OperationalInsights/workspaces/savedSearches/readme.md @@ -27,7 +27,7 @@ This template deploys a saved search for a Log Analytics workspace. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `logAnalyticsWorkspaceName` | string | Name of the Log Analytics workspace. Required if the template is used in a standalone deployment. | +| `logAnalyticsWorkspaceName` | string | The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/deploy.bicep b/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/deploy.bicep index 0d756a84ad..4ded2de2f2 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/deploy.bicep +++ b/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Log Analytics workspace. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment.') param logAnalyticsWorkspaceName string @description('Optional. The name of the storage insights config.') diff --git a/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/readme.md b/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/readme.md index a893ba491d..22b81dfcfd 100644 --- a/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/readme.md +++ b/arm/Microsoft.OperationalInsights/workspaces/storageInsightConfigs/readme.md @@ -24,7 +24,7 @@ This template deploys a storage insights configuration for a Log Analytics works **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `logAnalyticsWorkspaceName` | string | Name of the Log Analytics workspace. Required if the template is used in a standalone deployment. | +| `logAnalyticsWorkspaceName` | string | The name of the parent Log Analytics workspace. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/backupConfig/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/backupConfig/deploy.bicep index 9f94a391ea..195fab06f3 100644 --- a/arm/Microsoft.RecoveryServices/vaults/backupConfig/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/backupConfig/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string @description('Optional. Name of the Azure Recovery Service Vault Backup Policy.') diff --git a/arm/Microsoft.RecoveryServices/vaults/backupConfig/readme.md b/arm/Microsoft.RecoveryServices/vaults/backupConfig/readme.md index 7662852c32..5e4530261b 100644 --- a/arm/Microsoft.RecoveryServices/vaults/backupConfig/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/backupConfig/readme.md @@ -19,7 +19,7 @@ This module deploys recovery services vault backup config. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/backupPolicies/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/backupPolicies/deploy.bicep index 3e3233a23f..6c6360d4c5 100644 --- a/arm/Microsoft.RecoveryServices/vaults/backupPolicies/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/backupPolicies/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string @description('Required. Name of the Azure Recovery Service Vault Backup Policy.') diff --git a/arm/Microsoft.RecoveryServices/vaults/backupPolicies/readme.md b/arm/Microsoft.RecoveryServices/vaults/backupPolicies/readme.md index 7e4692d0b1..0589968337 100644 --- a/arm/Microsoft.RecoveryServices/vaults/backupPolicies/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/backupPolicies/readme.md @@ -25,7 +25,7 @@ This module deploys a Backup Policy for a Recovery Services Vault **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/deploy.bicep index 4212630bd6..b6e4c37347 100644 --- a/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string @description('Optional. The name of the backup storage config.') diff --git a/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/readme.md b/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/readme.md index 01bb7fb089..47b0868c02 100644 --- a/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/backupStorageConfig/readme.md @@ -18,7 +18,7 @@ This module deploys the Backup Storage Configuration for the Recovery Service Va **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/protectionContainers/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/protectionContainers/deploy.bicep index 5f37621952..09842fb3d4 100644 --- a/arm/Microsoft.RecoveryServices/vaults/protectionContainers/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/protectionContainers/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string @description('Required. Name of the Azure Recovery Service Vault Protection Container.') diff --git a/arm/Microsoft.RecoveryServices/vaults/protectionContainers/readme.md b/arm/Microsoft.RecoveryServices/vaults/protectionContainers/readme.md index ac5095ede6..f1184c6f16 100644 --- a/arm/Microsoft.RecoveryServices/vaults/protectionContainers/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/protectionContainers/readme.md @@ -24,7 +24,7 @@ This module deploys a Protection Container for a Recovery Services Vault **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/deploy.bicep index ef2962f5f4..333d613f32 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string @description('Required. The recovery location the fabric represents.') diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/readme.md b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/readme.md index 1ec0749e62..2935a71bf8 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/readme.md @@ -28,7 +28,7 @@ This module deploys a Replication Fabric for Azure to Azure disaster recovery sc **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/deploy.bicep index a7b0d301d2..72913106f7 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/deploy.bicep @@ -1,7 +1,7 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string -@description('Conditional. Name of the Replication Fabric. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Replication Fabric. Required if the template is used in a standalone deployment.') param replicationFabricName string @description('Required. The name of the replication container.') diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/readme.md b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/readme.md index 1d37148fcb..d3b28ef89c 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/readme.md @@ -27,8 +27,8 @@ This module deploys a Replication Protection Container. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | -| `replicationFabricName` | string | Name of the Replication Fabric. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `replicationFabricName` | string | The name of the parent Replication Fabric. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/deploy.bicep index 2536fa6541..66bdea2423 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/deploy.bicep @@ -1,10 +1,10 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string -@description('Conditional. Name of the Replication Fabric. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Replication Fabric. Required if the template is used in a standalone deployment.') param replicationFabricName string -@description('Conditional. Name of the source Replication container. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent source Replication container. Required if the template is used in a standalone deployment.') param sourceProtectionContainerName string @description('Optional. Resource ID of the target Replication container. Must be specified if targetContainerName is not. If specified, targetContainerFabricName and targetContainerName will be ignored.') diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/readme.md b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/readme.md index 598b96f115..d344cc56f0 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/readme.md @@ -21,9 +21,9 @@ This module deploys a Replication Protection Container Mapping. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | -| `replicationFabricName` | string | Name of the Replication Fabric. Required if the template is used in a standalone deployment. | -| `sourceProtectionContainerName` | string | Name of the source Replication container. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `replicationFabricName` | string | The name of the parent Replication Fabric. Required if the template is used in a standalone deployment. | +| `sourceProtectionContainerName` | string | The name of the parent source Replication container. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/deploy.bicep b/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/deploy.bicep index 9e4a1f5154..123e2f07ca 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/deploy.bicep +++ b/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment.') param recoveryVaultName string @description('Required. The name of the replication policy.') diff --git a/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/readme.md b/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/readme.md index 6f11899fca..f5b3f0662e 100644 --- a/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/readme.md +++ b/arm/Microsoft.RecoveryServices/vaults/replicationPolicies/readme.md @@ -26,7 +26,7 @@ This module deploys a Replication Policy for Disaster Recovery scenario. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `recoveryVaultName` | string | Name of the Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | +| `recoveryVaultName` | string | The name of the parent Azure Recovery Service Vault. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep index 96ef2e56da..53252fde07 100644 --- a/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') @minLength(6) @maxLength(50) param namespaceName string diff --git a/arm/Microsoft.ServiceBus/namespaces/authorizationRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/readme.md index 8e8f28ea5d..adb841bbe2 100644 --- a/arm/Microsoft.ServiceBus/namespaces/authorizationRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/authorizationRules/readme.md @@ -24,7 +24,7 @@ This module deploys authorization rules for a service bus namespace **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep index 73ffec9f71..790de0620b 100644 --- a/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') @minLength(6) @maxLength(50) param namespaceName string diff --git a/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md index 1868aa467a..750a046877 100644 --- a/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs/readme.md @@ -19,7 +19,7 @@ This module deploys a disaster recovery config for a service bus Namespace **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/deploy.bicep index 5b0540070e..bdaf2720b4 100644 --- a/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') @minLength(6) @maxLength(50) param namespaceName string diff --git a/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md index 32ad32dff6..ce1e092e55 100644 --- a/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/ipFilterRules/readme.md @@ -26,7 +26,7 @@ This module deploys IP filter rules for a service bus namespace **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep index 9b5c7d136b..9bbb7f11f9 100644 --- a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') @minLength(6) @maxLength(50) param namespaceName string diff --git a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md index 2edc0dfffe..802e86bd21 100644 --- a/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/migrationConfigurations/readme.md @@ -25,7 +25,7 @@ This module deploys a migration configuration for a service bus namespace **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep index 7c598dab1e..7a44bdf463 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/deploy.bicep @@ -1,10 +1,10 @@ @description('Required. The name of the service bus namepace queue.') param name string -@description('Conditional. The name of the parent parent service bus namespace. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace. Required if the template is used in a standalone deployment.') param namespaceName string -@description('Conditional. The name of the parent parent service bus namespace queue. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace Queue. Required if the template is used in a standalone deployment.') param queueName string @description('Optional. The rights associated with the rule.') diff --git a/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/readme.md index 2518bdcf55..29d6b9ecb3 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/queues/authorizationRules/readme.md @@ -24,8 +24,8 @@ This module deploys an authorization rule for a service bus namespace queue. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | The name of the parent parent service bus namespace. Required if the template is used in a standalone deployment. | -| `queueName` | string | The name of the parent parent service bus namespace queue. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace. Required if the template is used in a standalone deployment. | +| `queueName` | string | The name of the parent Service Bus Namespace Queue. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/queues/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/queues/deploy.bicep index c0cc2e1684..5c7283657f 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/queues/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') @minLength(6) @maxLength(50) param namespaceName string diff --git a/arm/Microsoft.ServiceBus/namespaces/queues/readme.md b/arm/Microsoft.ServiceBus/namespaces/queues/readme.md index c74fdea4f5..8fc03e3a0b 100644 --- a/arm/Microsoft.ServiceBus/namespaces/queues/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/queues/readme.md @@ -27,7 +27,7 @@ This module deploys a queue for a service bus namespace. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/deploy.bicep index 2c3c8e12fa..80d19564ed 100644 --- a/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/deploy.bicep @@ -1,10 +1,10 @@ @description('Required. The name of the service bus namespace topic.') param name string -@description('Conditional. The name of the parent parent service bus namespace. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace. Required if the template is used in a standalone deployment.') param namespaceName string -@description('Conditional. The name of the parent parent service bus namespace topic. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace Topic. Required if the template is used in a standalone deployment.') param topicName string @description('Optional. The rights associated with the rule.') diff --git a/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/readme.md index 9db26d7a07..6c478d4f96 100644 --- a/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/topics/authorizationRules/readme.md @@ -24,8 +24,8 @@ This module deploys an authorization rule for a service bus namespace topic. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | The name of the parent parent service bus namespace. Required if the template is used in a standalone deployment. | -| `topicName` | string | The name of the parent parent service bus namespace topic. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace. Required if the template is used in a standalone deployment. | +| `topicName` | string | The name of the parent Service Bus Namespace Topic. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/topics/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/topics/deploy.bicep index c3176cb692..de89591271 100644 --- a/arm/Microsoft.ServiceBus/namespaces/topics/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/topics/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the parent Service Bus Namespace for the Service Bus Topic. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace for the Service Bus Topic. Required if the template is used in a standalone deployment.') @minLength(6) @maxLength(50) param namespaceName string diff --git a/arm/Microsoft.ServiceBus/namespaces/topics/readme.md b/arm/Microsoft.ServiceBus/namespaces/topics/readme.md index cd9283b351..14a437f58a 100644 --- a/arm/Microsoft.ServiceBus/namespaces/topics/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/topics/readme.md @@ -27,7 +27,7 @@ This module deploys a topic for a service bus namespace. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | Name of the parent Service Bus Namespace for the Service Bus Topic. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace for the Service Bus Topic. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep index 817ee36d0e..dc289e3f0d 100644 --- a/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep +++ b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment.') @minLength(6) @maxLength(50) param namespaceName string diff --git a/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md index 9a35d8096c..1f7d8fb0ef 100644 --- a/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md +++ b/arm/Microsoft.ServiceBus/namespaces/virtualNetworkRules/readme.md @@ -24,7 +24,7 @@ This module deploys a virtual network rule for a service bus namespace. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `namespaceName` | string | Name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | +| `namespaceName` | string | The name of the parent Service Bus Namespace for the Service Bus Queue. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.ServiceFabric/clusters/applicationTypes/deploy.bicep b/arm/Microsoft.ServiceFabric/clusters/applicationTypes/deploy.bicep index db17874dd9..f74dc4b2ff 100644 --- a/arm/Microsoft.ServiceFabric/clusters/applicationTypes/deploy.bicep +++ b/arm/Microsoft.ServiceFabric/clusters/applicationTypes/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the Service Fabric cluster. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Service Fabric cluster. Required if the template is used in a standalone deployment.') param serviceFabricClusterName string = '' @description('Optional. Application type name.') diff --git a/arm/Microsoft.ServiceFabric/clusters/applicationTypes/readme.md b/arm/Microsoft.ServiceFabric/clusters/applicationTypes/readme.md index 062b1f2a98..aa8add7c6f 100644 --- a/arm/Microsoft.ServiceFabric/clusters/applicationTypes/readme.md +++ b/arm/Microsoft.ServiceFabric/clusters/applicationTypes/readme.md @@ -19,7 +19,7 @@ This module deploys a Service Fabric Cluster Application Type. **Conditional parameters** | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | -| `serviceFabricClusterName` | string | `''` | Name of the Service Fabric cluster. Required if the template is used in a standalone deployment. | +| `serviceFabricClusterName` | string | `''` | The name of the parent Service Fabric cluster. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep b/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep index 01f18bb73e..3883b6f2fd 100644 --- a/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/administrators/deploy.bicep @@ -1,4 +1,4 @@ -@description('Conditional. Name of the SQL managed instance. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent SQL managed instance. Required if the template is used in a standalone deployment.') param managedInstanceName string @description('Required. Login name of the managed instance administrator.') diff --git a/arm/Microsoft.Sql/managedInstances/administrators/readme.md b/arm/Microsoft.Sql/managedInstances/administrators/readme.md index c03e60262f..63efdd9095 100644 --- a/arm/Microsoft.Sql/managedInstances/administrators/readme.md +++ b/arm/Microsoft.Sql/managedInstances/administrators/readme.md @@ -25,7 +25,7 @@ This module deploys an administrator for the SQL managed instance **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `managedInstanceName` | string | Name of the SQL managed instance. Required if the template is used in a standalone deployment. | +| `managedInstanceName` | string | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep index b9ccf57725..cef5b0f1cb 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/deploy.bicep @@ -4,7 +4,7 @@ param name string @description('Conditional. The name of the parent managed instance database. Required if the template is used in a standalone deployment.') param databaseName string -@description('Conditional. Name of the managed instance. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent managed instance. Required if the template is used in a standalone deployment.') param managedInstanceName string @description('Optional. The week of year to take the yearly backup in an ISO 8601 format.') diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md index 0f21b9a808..7db8657c7b 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md +++ b/arm/Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicies/readme.md @@ -25,7 +25,7 @@ This module deploys a backup long-term retention policies for SQL Managed Instan | Parameter Name | Type | Description | | :-- | :-- | :-- | | `databaseName` | string | The name of the parent managed instance database. Required if the template is used in a standalone deployment. | -| `managedInstanceName` | string | Name of the managed instance. Required if the template is used in a standalone deployment. | +| `managedInstanceName` | string | The name of the parent managed instance. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep index d8e5819231..3fa3a03853 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/deploy.bicep @@ -4,7 +4,7 @@ param name string @description('Conditional. The name of the parent SQL managed instance database. Required if the template is used in a standalone deployment.') param databaseName string -@description('Conditional. Name of the SQL managed instance. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent SQL managed instance. Required if the template is used in a standalone deployment.') param managedInstanceName string @description('Optional. The backup retention period in days. This is how many days Point-in-Time Restore will be supported.') diff --git a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md index 95e3e4c883..3ea8119f91 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md +++ b/arm/Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/readme.md @@ -26,7 +26,7 @@ This module deploys a backup short-term retention policies for SQL Managed Insta | Parameter Name | Type | Description | | :-- | :-- | :-- | | `databaseName` | string | The name of the parent SQL managed instance database. Required if the template is used in a standalone deployment. | -| `managedInstanceName` | string | Name of the SQL managed instance. Required if the template is used in a standalone deployment. | +| `managedInstanceName` | string | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep b/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep index 7ffb74a133..19ec8a9dfe 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/databases/deploy.bicep @@ -10,13 +10,10 @@ param location string = resourceGroup().location @description('Optional. Collation of the managed instance database.') param collation string = 'SQL_Latin1_General_CP1_CI_AS' -@description('Optional. Conditional. If createMode is PointInTimeRestore, this value is required. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database.') -param restorePointInTime string = '' - @description('Optional. Collation of the managed instance.') param catalogCollation string = 'SQL_Latin1_General_CP1_CI_AS' -@description('Optional. Managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Recovery: Creates a database by restoring a geo-replicated backup. RecoverableDatabaseId must be specified as the recoverable database resource ID to restore.') +@description('Optional. Managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Recovery: Creates a database by restoring a geo-replicated backup. RecoverableDatabaseId must be specified as the recoverable database resource ID to restore. RestoreLongTermRetentionBackup: Create a database by restoring from a long term retention backup (longTermRetentionBackupResourceId required).') @allowed([ 'Default' 'RestoreExternalBackup' @@ -26,22 +23,25 @@ param catalogCollation string = 'SQL_Latin1_General_CP1_CI_AS' ]) param createMode string = 'Default' -@description('Optional. Conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the uri of the storage container where backups for this restore are stored.') -param storageContainerUri string = '' - -@description('Optional. Conditional. The resource identifier of the source database associated with create operation of this database.') +@description('Conditional. The resource identifier of the source database associated with create operation of this database. Required if createMode is PointInTimeRestore.') param sourceDatabaseId string = '' -@description('Optional. Conditional. The restorable dropped database resource ID to restore when creating this database.') +@description('Conditional. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Required if createMode is PointInTimeRestore.') +param restorePointInTime string = '' + +@description('Optional. The restorable dropped database resource ID to restore when creating this database.') param restorableDroppedDatabaseId string = '' -@description('Optional. Conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the storage container sas token.') +@description('Conditional. Specifies the uri of the storage container where backups for this restore are stored. Required if createMode is RestoreExternalBackup.') +param storageContainerUri string = '' + +@description('Conditional. Specifies the storage container sas token. Required if createMode is RestoreExternalBackup.') param storageContainerSasToken string = '' -@description('Optional. Conditional. The resource identifier of the recoverable database associated with create operation of this database.') +@description('Conditional. The resource identifier of the recoverable database associated with create operation of this database. Required if createMode is Recovery.') param recoverableDatabaseId string = '' -@description('Optional. Conditional. The name of the Long Term Retention backup to be used for restore of this managed database.') +@description('Conditional. The resource ID of the Long Term Retention backup to be used for restore of this managed database. Required if createMode is RestoreLongTermRetentionBackup.') param longTermRetentionBackupResourceId string = '' @description('Optional. Specifies the number of days that logs will be kept for; a value of 0 will retain data indefinitely.') diff --git a/arm/Microsoft.Sql/managedInstances/databases/readme.md b/arm/Microsoft.Sql/managedInstances/databases/readme.md index c0532bd6b3..6da4427ecb 100644 --- a/arm/Microsoft.Sql/managedInstances/databases/readme.md +++ b/arm/Microsoft.Sql/managedInstances/databases/readme.md @@ -30,9 +30,15 @@ The SQL Managed Instance Database is deployed on a SQL Managed Instance. | `name` | string | The name of the SQL managed instance database. | **Conditional parameters** -| Parameter Name | Type | Description | -| :-- | :-- | :-- | -| `managedInstanceName` | string | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | +| Parameter Name | Type | Default Value | Description | +| :-- | :-- | :-- | :-- | +| `longTermRetentionBackupResourceId` | string | `''` | The resource ID of the Long Term Retention backup to be used for restore of this managed database. Required if createMode is RestoreLongTermRetentionBackup. | +| `managedInstanceName` | string | | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | +| `recoverableDatabaseId` | string | `''` | The resource identifier of the recoverable database associated with create operation of this database. Required if createMode is Recovery. | +| `restorePointInTime` | string | `''` | Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Required if createMode is PointInTimeRestore. | +| `sourceDatabaseId` | string | `''` | The resource identifier of the source database associated with create operation of this database. Required if createMode is PointInTimeRestore. | +| `storageContainerSasToken` | string | `''` | Specifies the storage container sas token. Required if createMode is RestoreExternalBackup. | +| `storageContainerUri` | string | `''` | Specifies the uri of the storage container where backups for this restore are stored. Required if createMode is RestoreExternalBackup. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | @@ -41,7 +47,7 @@ The SQL Managed Instance Database is deployed on a SQL Managed Instance. | `backupShortTermRetentionPoliciesObj` | _[backupShortTermRetentionPolicies](backupShortTermRetentionPolicies/readme.md)_ object | `{object}` | | The configuration for the backup short term retention policy definition. | | `catalogCollation` | string | `'SQL_Latin1_General_CP1_CI_AS'` | | Collation of the managed instance. | | `collation` | string | `'SQL_Latin1_General_CP1_CI_AS'` | | Collation of the managed instance database. | -| `createMode` | string | `'Default'` | `[Default, RestoreExternalBackup, PointInTimeRestore, Recovery, RestoreLongTermRetentionBackup]` | Managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Recovery: Creates a database by restoring a geo-replicated backup. RecoverableDatabaseId must be specified as the recoverable database resource ID to restore. | +| `createMode` | string | `'Default'` | `[Default, RestoreExternalBackup, PointInTimeRestore, Recovery, RestoreLongTermRetentionBackup]` | Managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Recovery: Creates a database by restoring a geo-replicated backup. RecoverableDatabaseId must be specified as the recoverable database resource ID to restore. RestoreLongTermRetentionBackup: Create a database by restoring from a long term retention backup (longTermRetentionBackupResourceId required). | | `diagnosticEventHubAuthorizationRuleId` | string | `''` | | Resource ID of the diagnostic event hub authorization rule for the Event Hubs namespace in which the event hub should be created or streamed to. | | `diagnosticEventHubName` | string | `''` | | Name of the diagnostic event hub within the namespace to which logs are streamed. Without this, an event hub is created for each log category. | | `diagnosticLogCategoriesToEnable` | array | `[SQLInsights, QueryStoreRuntimeStatistics, QueryStoreWaitStatistics, Errors]` | `[SQLInsights, QueryStoreRuntimeStatistics, QueryStoreWaitStatistics, Errors]` | The name of logs that will be streamed. | @@ -52,13 +58,7 @@ The SQL Managed Instance Database is deployed on a SQL Managed Instance. | `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via the Customer Usage Attribution ID (GUID). | | `location` | string | `[resourceGroup().location]` | | Location for all resources. | | `lock` | string | `'NotSpecified'` | `[CanNotDelete, NotSpecified, ReadOnly]` | Specify the type of lock. | -| `longTermRetentionBackupResourceId` | string | `''` | | Conditional. The name of the Long Term Retention backup to be used for restore of this managed database. | -| `recoverableDatabaseId` | string | `''` | | Conditional. The resource identifier of the recoverable database associated with create operation of this database. | -| `restorableDroppedDatabaseId` | string | `''` | | Conditional. The restorable dropped database resource ID to restore when creating this database. | -| `restorePointInTime` | string | `''` | | Conditional. If createMode is PointInTimeRestore, this value is required. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. | -| `sourceDatabaseId` | string | `''` | | Conditional. The resource identifier of the source database associated with create operation of this database. | -| `storageContainerSasToken` | string | `''` | | Conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the storage container sas token. | -| `storageContainerUri` | string | `''` | | Conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the uri of the storage container where backups for this restore are stored. | +| `restorableDroppedDatabaseId` | string | `''` | | The restorable dropped database resource ID to restore when creating this database. | | `tags` | object | `{object}` | | Tags of the resource. | diff --git a/arm/Microsoft.Sql/managedInstances/deploy.bicep b/arm/Microsoft.Sql/managedInstances/deploy.bicep index dce0133dd2..e13aa69e56 100644 --- a/arm/Microsoft.Sql/managedInstances/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/deploy.bicep @@ -122,7 +122,7 @@ param systemAssignedIdentity bool = false @description('Optional. The ID(s) to assign to the resource.') param userAssignedIdentities object = {} -@description('Conditional. Required if "userAssignedIdentities" is not empty. The resource ID of a user assigned identity to be used by default.') +@description('Conditional. The resource ID of a user assigned identity to be used by default. Required if "userAssignedIdentities" is not empty.') param primaryUserAssignedIdentityId string = '' @description('Optional. Databases to create in this server.') diff --git a/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep b/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep index 596566b95e..689c570062 100644 --- a/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/encryptionProtector/deploy.bicep @@ -1,7 +1,7 @@ @description('Required. The name of the encryptionProtector.') param name string = 'current' -@description('Conditional. Name of the SQL managed instance. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent SQL managed instance. Required if the template is used in a standalone deployment.') param managedInstanceName string @description('Required. The name of the SQL managed instance key.') diff --git a/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md b/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md index 56bd5c1334..c1a2834147 100644 --- a/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md +++ b/arm/Microsoft.Sql/managedInstances/encryptionProtector/readme.md @@ -25,7 +25,7 @@ This module deploys an encryption protector for a SQL managed instance. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `managedInstanceName` | string | Name of the SQL managed instance. Required if the template is used in a standalone deployment. | +| `managedInstanceName` | string | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep b/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep index 6cd3c11c01..6361d529f9 100644 --- a/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/keys/deploy.bicep @@ -1,7 +1,7 @@ @description('Optional. The name of the key. Must follow the [__] pattern.') param name string = '' -@description('Conditional. Name of the SQL managed instance. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent SQL managed instance. Required if the template is used in a standalone deployment.') param managedInstanceName string @description('Optional. The encryption protector type like "ServiceManaged", "AzureKeyVault".') diff --git a/arm/Microsoft.Sql/managedInstances/keys/readme.md b/arm/Microsoft.Sql/managedInstances/keys/readme.md index b60364d7f6..3563721a66 100644 --- a/arm/Microsoft.Sql/managedInstances/keys/readme.md +++ b/arm/Microsoft.Sql/managedInstances/keys/readme.md @@ -19,7 +19,7 @@ This module deploys a key for a SQL managed instance. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `managedInstanceName` | string | Name of the SQL managed instance. Required if the template is used in a standalone deployment. | +| `managedInstanceName` | string | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Sql/managedInstances/readme.md b/arm/Microsoft.Sql/managedInstances/readme.md index f807973dcf..278819dce5 100644 --- a/arm/Microsoft.Sql/managedInstances/readme.md +++ b/arm/Microsoft.Sql/managedInstances/readme.md @@ -50,7 +50,7 @@ SQL MI allows for Azure AD Authentication via an [Azure AD Admin](https://docs.m **Conditional parameters** | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | -| `primaryUserAssignedIdentityId` | string | `''` | Required if "userAssignedIdentities" is not empty. The resource ID of a user assigned identity to be used by default. | +| `primaryUserAssignedIdentityId` | string | `''` | The resource ID of a user assigned identity to be used by default. Required if "userAssignedIdentities" is not empty. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/deploy.bicep b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/deploy.bicep index a85a13fe78..76cb3121cb 100644 --- a/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/deploy.bicep @@ -1,7 +1,7 @@ @description('Required. The name of the security alert policy.') param name string -@description('Conditional. Name of the SQL managed instance. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent SQL managed instance. Required if the template is used in a standalone deployment.') param managedInstanceName string @description('Optional. Enables advanced data security features, like recuring vulnerability assesment scans and ATP. If enabled, storage account must be provided.') diff --git a/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md index 339ff79c25..f2142fd2d0 100644 --- a/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md +++ b/arm/Microsoft.Sql/managedInstances/securityAlertPolicies/readme.md @@ -24,7 +24,7 @@ This module deploys a security alert policy for a SQL managed instance. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `managedInstanceName` | string | Name of the SQL managed instance. Required if the template is used in a standalone deployment. | +| `managedInstanceName` | string | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep index d1d48235b8..6289616e20 100644 --- a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep +++ b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/deploy.bicep @@ -1,7 +1,7 @@ @description('Required. The name of the vulnerability assessment.') param name string -@description('Conditional. Name of the SQL managed instance. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent SQL managed instance. Required if the template is used in a standalone deployment.') param managedInstanceName string @description('Optional. Recurring scans state.') diff --git a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md index ee02698c95..c46c877900 100644 --- a/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md +++ b/arm/Microsoft.Sql/managedInstances/vulnerabilityAssessments/readme.md @@ -24,7 +24,7 @@ This module deploys a vulnerability assessment for a SQL managed instance. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `managedInstanceName` | string | Name of the SQL managed instance. Required if the template is used in a standalone deployment. | +| `managedInstanceName` | string | The name of the parent SQL managed instance. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Sql/servers/deploy.bicep b/arm/Microsoft.Sql/servers/deploy.bicep index db2a46ff0b..df1d7d524f 100644 --- a/arm/Microsoft.Sql/servers/deploy.bicep +++ b/arm/Microsoft.Sql/servers/deploy.bicep @@ -1,7 +1,7 @@ -@description('Optional. Administrator username for the server. Required if no `administrators` object for AAD authentication is provided.') +@description('Conditional. The administrator username for the server. Required if no `administrators` object for AAD authentication is provided.') param administratorLogin string = '' -@description('Optional. The administrator login password. Required if no `administrators` object for AAD authentication is provided.') +@description('Conditional. The administrator login password. Required if no `administrators` object for AAD authentication is provided.') @secure() param administratorLoginPassword string = '' @@ -43,7 +43,7 @@ param firewallRules array = [] @description('Optional. The security alert policies to create in the server.') param securityAlertPolicies array = [] -@description('Optional. The Azure Active Directory (AAD) administrator authentication. Required if no `administratorLogin` & `administratorLoginPassword` is provided.') +@description('Conditional. The Azure Active Directory (AAD) administrator authentication. Required if no `administratorLogin` & `administratorLoginPassword` is provided.') param administrators object = {} var identityType = systemAssignedIdentity ? (!empty(userAssignedIdentities) ? 'SystemAssigned,UserAssigned' : 'SystemAssigned') : (!empty(userAssignedIdentities) ? 'UserAssigned' : 'None') diff --git a/arm/Microsoft.Sql/servers/readme.md b/arm/Microsoft.Sql/servers/readme.md index d38789ae87..c5f148fbb1 100644 --- a/arm/Microsoft.Sql/servers/readme.md +++ b/arm/Microsoft.Sql/servers/readme.md @@ -27,12 +27,16 @@ This module deploys a SQL server. | :-- | :-- | :-- | | `name` | string | The name of the server. | +**Conditional parameters** +| Parameter Name | Type | Default Value | Description | +| :-- | :-- | :-- | :-- | +| `administratorLogin` | string | `''` | The administrator username for the server. Required if no `administrators` object for AAD authentication is provided. | +| `administratorLoginPassword` | secureString | `''` | The administrator login password. Required if no `administrators` object for AAD authentication is provided. | +| `administrators` | object | `{object}` | The Azure Active Directory (AAD) administrator authentication. Required if no `administratorLogin` & `administratorLoginPassword` is provided. | + **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | | :-- | :-- | :-- | :-- | :-- | -| `administratorLogin` | string | `''` | | Administrator username for the server. Required if no `administrators` object for AAD authentication is provided. | -| `administratorLoginPassword` | secureString | `''` | | The administrator login password. Required if no `administrators` object for AAD authentication is provided. | -| `administrators` | object | `{object}` | | The Azure Active Directory (AAD) administrator authentication. Required if no `administratorLogin` & `administratorLoginPassword` is provided. | | `databases` | _[databases](databases/readme.md)_ array | `[]` | | The databases to create in the server. | | `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via the Customer Usage Attribution ID (GUID). | | `firewallRules` | _[firewallRules](firewallRules/readme.md)_ array | `[]` | | The firewall rules to create in the server. | diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep index b317a21cdd..87a1c72dfb 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Optional. Name of the blob service.') diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep index 56d029610a..82611798cb 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/deploy.bicep @@ -1,11 +1,11 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string -@description('Conditional. Name of the blob service. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent blob service. Required if the template is used in a standalone deployment.') param blobServicesName string = 'default' -@description('Conditional. Name of the container to apply the policy to. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent container to apply the policy to. Required if the template is used in a standalone deployment.') param containerName string @description('Optional. Name of the immutable policy.') diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md index dc380f1b40..6d896b03ae 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/readme.md @@ -19,9 +19,9 @@ This module deploys an Immutability Policy for a blob container **Conditional parameters** | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | -| `blobServicesName` | string | `'default'` | Name of the blob service. Required if the template is used in a standalone deployment. | -| `containerName` | string | | Name of the container to apply the policy to. Required if the template is used in a standalone deployment. | -| `storageAccountName` | string | | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `blobServicesName` | string | `'default'` | The name of the parent blob service. Required if the template is used in a standalone deployment. | +| `containerName` | string | | The name of the parent container to apply the policy to. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md index 12dbb73d25..e6de525976 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/containers/readme.md @@ -26,7 +26,7 @@ This module deploys a blob container **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `storageAccountName` | string | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep index 9b929162e0..8ca3d32a13 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Optional. The name of the blob service.') diff --git a/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md b/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md index 9d809fca75..79e6bb38fd 100644 --- a/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/blobServices/readme.md @@ -23,7 +23,7 @@ This module can be used to deploy a blob service into a storage account. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `storageAccountName` | string | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep index 8809baaa96..a4e97fa979 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Optional. The name of the file service.') diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md b/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md index fdb60ec5c7..e074cf13aa 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/readme.md @@ -22,7 +22,7 @@ This module can be used to deploy a file share service into a storage account. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `storageAccountName` | string | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep index 2cd67243cf..10895d2c9e 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Conditional. The name of the parent file service. Required if the template is used in a standalone deployment.') diff --git a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md index fd4fe08135..6f04a3fbd7 100644 --- a/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/fileServices/shares/readme.md @@ -26,7 +26,7 @@ This module deploys a storage account file share. | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | | `fileServicesName` | string | `'default'` | The name of the parent file service. Required if the template is used in a standalone deployment. | -| `storageAccountName` | string | | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep index 38abc2d7a1..6115be34ea 100644 --- a/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/managementPolicies/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Optional. The name of the storage container to deploy.') diff --git a/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md b/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md index 425b161759..2b88918fe0 100644 --- a/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/managementPolicies/readme.md @@ -24,7 +24,7 @@ This module can be used to deploy a management policies into a storage account. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `storageAccountName` | string | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep index 6678c041f5..7272cb683a 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Optional. The name of the queue service.') diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep index 911bed91fc..9a08797969 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Conditional. The name of the parent queue service. Required if the template is used in a standalone deployment.') diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md index 564d83a872..f2c68bda46 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/queues/readme.md @@ -27,7 +27,7 @@ This module deploys a storage account queue | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | | `queueServicesName` | string | `'default'` | The name of the parent queue service. Required if the template is used in a standalone deployment. | -| `storageAccountName` | string | | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md b/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md index 1b30175b94..65aac76390 100644 --- a/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/queueServices/readme.md @@ -22,7 +22,7 @@ This module can be used to deploy a file share service into a storage account. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `storageAccountName` | string | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep index f00d3dc348..ce86de0b54 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Optional. The name of the table service.') diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md b/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md index 0dc4f8ba02..f514db5ed2 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/readme.md @@ -21,7 +21,7 @@ This module deploys a storage account table service **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `storageAccountName` | string | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Allowed Values | Description | diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep index 896ebe5f07..42454817c7 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/deploy.bicep @@ -1,5 +1,5 @@ @maxLength(24) -@description('Conditional. Name of the Storage Account. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent Storage Account. Required if the template is used in a standalone deployment.') param storageAccountName string @description('Conditional. The name of the parent table service. Required if the template is used in a standalone deployment.') diff --git a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md index c7f66335f6..03e1bd8c9d 100644 --- a/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md +++ b/arm/Microsoft.Storage/storageAccounts/tableServices/tables/readme.md @@ -24,7 +24,7 @@ This module deploys a storage account table **Conditional parameters** | Parameter Name | Type | Default Value | Description | | :-- | :-- | :-- | :-- | -| `storageAccountName` | string | | Name of the Storage Account. Required if the template is used in a standalone deployment. | +| `storageAccountName` | string | | The name of the parent Storage Account. Required if the template is used in a standalone deployment. | | `tableServicesName` | string | `'default'` | The name of the parent table service. Required if the template is used in a standalone deployment. | **Optional parameters** diff --git a/arm/Microsoft.Web/sites/config-appsettings/deploy.bicep b/arm/Microsoft.Web/sites/config-appsettings/deploy.bicep index 0329547679..08ad914fa0 100644 --- a/arm/Microsoft.Web/sites/config-appsettings/deploy.bicep +++ b/arm/Microsoft.Web/sites/config-appsettings/deploy.bicep @@ -1,7 +1,7 @@ // ================ // // Parameters // // ================ // -@description('Conditional. Name of the site parent resource. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent site resource. Required if the template is used in a standalone deployment.') param appName string @description('Required. Type of site to deploy.') diff --git a/arm/Microsoft.Web/sites/config-appsettings/readme.md b/arm/Microsoft.Web/sites/config-appsettings/readme.md index 6dda33e689..4cd733d653 100644 --- a/arm/Microsoft.Web/sites/config-appsettings/readme.md +++ b/arm/Microsoft.Web/sites/config-appsettings/readme.md @@ -24,7 +24,7 @@ This module deploys the app settings. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `appName` | string | Name of the site parent resource. Required if the template is used in a standalone deployment. | +| `appName` | string | The name of the parent site resource. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description | diff --git a/arm/Microsoft.Web/sites/config-authsettingsv2/deploy.bicep b/arm/Microsoft.Web/sites/config-authsettingsv2/deploy.bicep index cb1f6c60b0..a8ca1f4d72 100644 --- a/arm/Microsoft.Web/sites/config-authsettingsv2/deploy.bicep +++ b/arm/Microsoft.Web/sites/config-authsettingsv2/deploy.bicep @@ -1,7 +1,7 @@ // ================ // // Parameters // // ================ // -@description('Conditional. Name of the site parent resource. Required if the template is used in a standalone deployment.') +@description('Conditional. The name of the parent site resource. Required if the template is used in a standalone deployment.') param appName string @description('Required. Type of site to deploy.') diff --git a/arm/Microsoft.Web/sites/config-authsettingsv2/readme.md b/arm/Microsoft.Web/sites/config-authsettingsv2/readme.md index a499e6f257..2ce1cd193a 100644 --- a/arm/Microsoft.Web/sites/config-authsettingsv2/readme.md +++ b/arm/Microsoft.Web/sites/config-authsettingsv2/readme.md @@ -25,7 +25,7 @@ This module deploys the auth settings v2. **Conditional parameters** | Parameter Name | Type | Description | | :-- | :-- | :-- | -| `appName` | string | Name of the site parent resource. Required if the template is used in a standalone deployment. | +| `appName` | string | The name of the parent site resource. Required if the template is used in a standalone deployment. | **Optional parameters** | Parameter Name | Type | Default Value | Description |