Microsoft.Portal tenantConfigurations

Bicep resource definition

The tenantConfigurations resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Portal/tenantConfigurations resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Portal/tenantConfigurations@2020-09-01-preview' = {
  name: 'default'
  properties: {
    enforcePrivateMarkdownStorage: bool
  }
}

Property values

tenantConfigurations

Name Description Value
name The resource name 'default'
properties Tenant configuration properties. ConfigurationProperties

ConfigurationProperties

Name Description Value
enforcePrivateMarkdownStorage When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited. bool

ARM template resource definition

The tenantConfigurations resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Portal/tenantConfigurations resource, add the following JSON to your template.

{
  "type": "Microsoft.Portal/tenantConfigurations",
  "apiVersion": "2020-09-01-preview",
  "name": "default",
  "properties": {
    "enforcePrivateMarkdownStorage": "bool"
  }
}

Property values

tenantConfigurations

Name Description Value
type The resource type 'Microsoft.Portal/tenantConfigurations'
apiVersion The resource api version '2020-09-01-preview'
name The resource name 'default'
properties Tenant configuration properties. ConfigurationProperties

ConfigurationProperties

Name Description Value
enforcePrivateMarkdownStorage When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited. bool

Terraform (AzAPI provider) resource definition

The tenantConfigurations resource type can be deployed to:

  • Tenants

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Portal/tenantConfigurations resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Portal/tenantConfigurations@2020-09-01-preview"
  name = "default"
  parent_id = "string"
  body = jsonencode({
    properties = {
      enforcePrivateMarkdownStorage = bool
    }
  })
}

Property values

tenantConfigurations

Name Description Value
type The resource type "Microsoft.Portal/tenantConfigurations@2020-09-01-preview"
name The resource name "default"
parent_id To deploy to a tenant, use /. string (required)
properties Tenant configuration properties. ConfigurationProperties

ConfigurationProperties

Name Description Value
enforcePrivateMarkdownStorage When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited. bool