Microsoft.Portal tenantConfigurations 2019-01-01-preview

Bicep resource definition

The tenantConfigurations 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.Portal/tenantConfigurations resource, add the following Bicep to your template.

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

Property values

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

Microsoft.Portal/tenantConfigurations

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

ARM template resource definition

The tenantConfigurations 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.Portal/tenantConfigurations resource, add the following JSON to your template.

{
  "type": "Microsoft.Portal/tenantConfigurations",
  "apiVersion": "2019-01-01-preview",
  "name": "string",
  "properties": {
    "enforcePrivateMarkdownStorage": "bool"
  }
}

Property values

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

Microsoft.Portal/tenantConfigurations

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

Terraform (AzAPI provider) resource definition

The tenantConfigurations 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.Portal/tenantConfigurations resource, add the following Terraform to your template.

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

Property values

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

Microsoft.Portal/tenantConfigurations

Name Description Value
name The resource name 'default' (required)
properties Tenant configuration properties. ConfigurationProperties
type The resource type "Microsoft.Portal/tenantConfigurations@2019-01-01-preview"