Microsoft.Web publishingUsers 2015-08-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@2015-08-01' = {
  kind: 'string'
  location: 'string'
  name: 'web'
  properties: {
    name: 'string'
    publishingPassword: 'string'
    publishingUserName: 'string'
    scmUri: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property values

Microsoft.Web/publishingUsers

Name Description Value
kind Kind of resource string
location Resource Location string (required)
name The resource name 'web' (required)
properties UserProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates

ResourceTags

Name Description Value

UserProperties

Name Description Value
name Username (internal) string
publishingPassword Password used for publishing string
publishingUserName Username used for publishing string
scmUri Service Control Manager URI, including username and password 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": "2015-08-01",
  "name": "string",
  "kind": "string",
  "location": "string",
  "properties": {
    "name": "string",
    "publishingPassword": "string",
    "publishingUserName": "string",
    "scmUri": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property values

Microsoft.Web/publishingUsers

Name Description Value
apiVersion The api version '2015-08-01'
kind Kind of resource string
location Resource Location string (required)
name The resource name 'web' (required)
properties UserProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Web/publishingUsers'

ResourceTags

Name Description Value

UserProperties

Name Description Value
name Username (internal) string
publishingPassword Password used for publishing string
publishingUserName Username used for publishing string
scmUri Service Control Manager URI, including username and password string

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@2015-08-01"
  name = "string"
  kind = "string"
  location = "string"
  body = jsonencode({
    properties = {
      name = "string"
      publishingPassword = "string"
      publishingUserName = "string"
      scmUri = "string"
    }
  })
  tags = {
    {customized property} = "string"
  }
}

Property values

Microsoft.Web/publishingUsers

Name Description Value
kind Kind of resource string
location Resource Location string (required)
name The resource name 'web' (required)
properties UserProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Web/publishingUsers@2015-08-01"

ResourceTags

Name Description Value

UserProperties

Name Description Value
name Username (internal) string
publishingPassword Password used for publishing string
publishingUserName Username used for publishing string
scmUri Service Control Manager URI, including username and password string