Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The publishingUsers resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Web/publishingUsers resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Web/publishingUsers@2024-11-01' = {
kind: 'string'
name: 'web'
properties: {
publishingPassword: 'string'
publishingPasswordHash: 'string'
publishingPasswordHashSalt: 'string'
publishingUserName: 'string'
scmUri: 'string'
}
}
Property Values
Microsoft.Web/publishingUsers
Name | Description | Value |
---|---|---|
kind | Kind of resource. | string |
name | The resource name | 'web' (required) |
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 |
ARM template resource definition
The publishingUsers resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Web/publishingUsers resource, add the following JSON to your template.
{
"type": "Microsoft.Web/publishingUsers",
"apiVersion": "2024-11-01",
"name": "string",
"kind": "string",
"properties": {
"publishingPassword": "string",
"publishingPasswordHash": "string",
"publishingPasswordHashSalt": "string",
"publishingUserName": "string",
"scmUri": "string"
}
}
Property Values
Microsoft.Web/publishingUsers
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2024-11-01' |
kind | Kind of resource. | string |
name | The resource name | 'web' (required) |
properties | User resource specific properties | UserProperties |
type | The resource type | 'Microsoft.Web/publishingUsers' |
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 |
Usage Examples
Terraform (AzAPI provider) resource definition
The publishingUsers resource type can be deployed with operations that target:
- Tenant
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Web/publishingUsers resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Web/publishingUsers@2024-11-01"
name = "string"
parent_id = "string"
body = {
kind = "string"
properties = {
publishingPassword = "string"
publishingPasswordHash = "string"
publishingPasswordHashSalt = "string"
publishingUserName = "string"
scmUri = "string"
}
}
}
Property Values
Microsoft.Web/publishingUsers
Name | Description | Value |
---|---|---|
kind | Kind of resource. | string |
name | The resource name | 'web' (required) |
properties | User resource specific properties | UserProperties |
type | The resource type | "Microsoft.Web/publishingUsers@2024-11-01" |
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 |