1. Packages
  2. Azure Classic
  3. API Docs
  4. core
  5. PortalTenantConfiguration

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.core.PortalTenantConfiguration

Explore with Pulumi AI

Manages Portal Tenant Configuration.

Note: User has to be Contributor or Owner at scope / for managing this resource.

Note: The Service Principal with Tenant Admin can be created by az ad sp create-for-rbac --name "<sp name>" --role="Contributor" --scopes="/".

Note: The Service Principal can be granted Tenant Admin permission by az role assignment create --assignee "<app id>" --role "Contributor" --scope "/".

Note: While assigning the role to the existing/new Service Principal at the Tenant Scope, the user assigning role must already have the Owner role assigned at the Tenant Scope.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.PortalTenantConfiguration("example", {privateMarkdownStorageEnforced: true});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.PortalTenantConfiguration("example", private_markdown_storage_enforced=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := core.NewPortalTenantConfiguration(ctx, "example", &core.PortalTenantConfigurationArgs{
			PrivateMarkdownStorageEnforced: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.PortalTenantConfiguration("example", new()
    {
        PrivateMarkdownStorageEnforced = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.PortalTenantConfiguration;
import com.pulumi.azure.core.PortalTenantConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new PortalTenantConfiguration("example", PortalTenantConfigurationArgs.builder()
            .privateMarkdownStorageEnforced(true)
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:PortalTenantConfiguration
    properties:
      privateMarkdownStorageEnforced: true
Copy

Create PortalTenantConfiguration Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new PortalTenantConfiguration(name: string, args: PortalTenantConfigurationArgs, opts?: CustomResourceOptions);
@overload
def PortalTenantConfiguration(resource_name: str,
                              args: PortalTenantConfigurationArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def PortalTenantConfiguration(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              private_markdown_storage_enforced: Optional[bool] = None)
func NewPortalTenantConfiguration(ctx *Context, name string, args PortalTenantConfigurationArgs, opts ...ResourceOption) (*PortalTenantConfiguration, error)
public PortalTenantConfiguration(string name, PortalTenantConfigurationArgs args, CustomResourceOptions? opts = null)
public PortalTenantConfiguration(String name, PortalTenantConfigurationArgs args)
public PortalTenantConfiguration(String name, PortalTenantConfigurationArgs args, CustomResourceOptions options)
type: azure:core:PortalTenantConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PortalTenantConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PortalTenantConfigurationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PortalTenantConfigurationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PortalTenantConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PortalTenantConfigurationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var portalTenantConfigurationResource = new Azure.Core.PortalTenantConfiguration("portalTenantConfigurationResource", new()
{
    PrivateMarkdownStorageEnforced = false,
});
Copy
example, err := core.NewPortalTenantConfiguration(ctx, "portalTenantConfigurationResource", &core.PortalTenantConfigurationArgs{
	PrivateMarkdownStorageEnforced: pulumi.Bool(false),
})
Copy
var portalTenantConfigurationResource = new PortalTenantConfiguration("portalTenantConfigurationResource", PortalTenantConfigurationArgs.builder()
    .privateMarkdownStorageEnforced(false)
    .build());
Copy
portal_tenant_configuration_resource = azure.core.PortalTenantConfiguration("portalTenantConfigurationResource", private_markdown_storage_enforced=False)
Copy
const portalTenantConfigurationResource = new azure.core.PortalTenantConfiguration("portalTenantConfigurationResource", {privateMarkdownStorageEnforced: false});
Copy
type: azure:core:PortalTenantConfiguration
properties:
    privateMarkdownStorageEnforced: false
Copy

PortalTenantConfiguration Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The PortalTenantConfiguration resource accepts the following input properties:

PrivateMarkdownStorageEnforced This property is required. bool

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

PrivateMarkdownStorageEnforced This property is required. bool

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

privateMarkdownStorageEnforced This property is required. Boolean

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

privateMarkdownStorageEnforced This property is required. boolean

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

private_markdown_storage_enforced This property is required. bool

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

privateMarkdownStorageEnforced This property is required. Boolean

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

Outputs

All input properties are implicitly available as output properties. Additionally, the PortalTenantConfiguration resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing PortalTenantConfiguration Resource

Get an existing PortalTenantConfiguration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: PortalTenantConfigurationState, opts?: CustomResourceOptions): PortalTenantConfiguration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        private_markdown_storage_enforced: Optional[bool] = None) -> PortalTenantConfiguration
func GetPortalTenantConfiguration(ctx *Context, name string, id IDInput, state *PortalTenantConfigurationState, opts ...ResourceOption) (*PortalTenantConfiguration, error)
public static PortalTenantConfiguration Get(string name, Input<string> id, PortalTenantConfigurationState? state, CustomResourceOptions? opts = null)
public static PortalTenantConfiguration get(String name, Output<String> id, PortalTenantConfigurationState state, CustomResourceOptions options)
resources:  _:    type: azure:core:PortalTenantConfiguration    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
PrivateMarkdownStorageEnforced bool

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

PrivateMarkdownStorageEnforced bool

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

privateMarkdownStorageEnforced Boolean

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

privateMarkdownStorageEnforced boolean

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

private_markdown_storage_enforced bool

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

privateMarkdownStorageEnforced Boolean

Is the private tile markdown storage which used to display custom dynamic and static content enabled?

Note: When private_markdown_storage_enforced is set to true, only external storage configuration (URI) is allowed for Markdown tiles. Inline content configuration will be prohibited.

Import

Portal Tenant Configurations can be imported using the resource id, e.g.

$ pulumi import azure:core/portalTenantConfiguration:PortalTenantConfiguration example /providers/Microsoft.Portal/tenantConfigurations/default
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.