Microsoft.Web publishingUsers 2021-02-01

Bicep resource definition

The publishingUsers resource type can be deployed with operations that target:

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@2021-02-01' = {
  name: 'web'
  kind: 'string'
  properties: {
    publishingPassword: 'string'
    publishingPasswordHash: 'string'
    publishingPasswordHashSalt: 'string'
    publishingUserName: 'string'
    scmUri: 'string'
  }
}

Property values

publishingUsers

Name Description Value
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

ARM template resource definition

The publishingUsers resource type can be deployed with operations that target:

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": "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 'Microsoft.Web/publishingUsers'
apiVersion The resource api version '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

Terraform (AzAPI provider) resource definition

The publishingUsers resource type can be deployed with operations that target:

  • Tenants

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@2021-02-01"
  name = "web"
  parent_id = "string"
  body = jsonencode({
    properties = {
      publishingPassword = "string"
      publishingPasswordHash = "string"
      publishingPasswordHashSalt = "string"
      publishingUserName = "string"
      scmUri = "string"
    }
    kind = "string"
  })
}

Property values

publishingUsers

Name Description Value
type The resource type "Microsoft.Web/publishingUsers@2021-02-01"
name The resource name "web"
parent_id To deploy to a tenant, use /. string (required)
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