Microsoft.Web publishingUsers 2021-02-01
The publishingUsers resource type can be deployed to: Tenants.
To learn about tenant deployments, see Bicep or ARM template
Template format
To create a Microsoft.Web/publishingUsers resource, add the following Bicep or JSON to your template.
resource symbolicname 'Microsoft.Web/publishingUsers@2021-02-01' = {
name: 'web'
kind: 'string'
properties: {
publishingPassword: 'string'
publishingPasswordHash: 'string'
publishingPasswordHashSalt: 'string'
publishingUserName: 'string'
scmUri: 'string'
}
}
Property values
publishingUsers
| Name | Description | Value |
|---|---|---|
| type | The resource type For Bicep, set this value in the resource declaration. |
'Microsoft.Web/publishingUsers' |
| apiVersion | The resource api version For Bicep, set this value in the resource declaration. |
'2021-02-01' |
| name | The resource name | 'web' |
| kind | Kind of resource. | string |
| properties | User resource specific properties | UserProperties |
UserProperties
| Name | Description | Value |
|---|---|---|
| publishingPassword | Password used for publishing. | string |
| publishingPasswordHash | Password hash used for publishing. | string |
| publishingPasswordHashSalt | Password hash salt used for publishing. | string |
| publishingUserName | Username used for publishing. | string (required) |
| scmUri | Url of SCM site. | string |