1. Packages
  2. Packages
  3. Power Platform
  4. API Docs
  5. TenantSettings
Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin
powerplatform logo
Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin

    Manages tenant-level Power Platform settings used for governance and platform-wide controls.

    Create TenantSettings Resource

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

    Constructor syntax

    new TenantSettings(name: string, args?: TenantSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def TenantSettings(resource_name: str,
                       args: Optional[TenantSettingsArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def TenantSettings(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       disable_capacity_allocation_by_environment_admins: Optional[bool] = None,
                       disable_environment_creation_by_non_admin_users: Optional[bool] = None,
                       disable_nps_comments_reachout: Optional[bool] = None,
                       disable_newsletter_sendout: Optional[bool] = None,
                       disable_portals_creation_by_non_admin_users: Optional[bool] = None,
                       disable_support_tickets_visible_by_all_users: Optional[bool] = None,
                       disable_survey_feedback: Optional[bool] = None,
                       disable_trial_environment_creation_by_non_admin_users: Optional[bool] = None,
                       power_platform: Optional[TenantPowerPlatformSettingsArgs] = None,
                       walk_me_opt_out: Optional[bool] = None)
    func NewTenantSettings(ctx *Context, name string, args *TenantSettingsArgs, opts ...ResourceOption) (*TenantSettings, error)
    public TenantSettings(string name, TenantSettingsArgs? args = null, CustomResourceOptions? opts = null)
    public TenantSettings(String name, TenantSettingsArgs args)
    public TenantSettings(String name, TenantSettingsArgs args, CustomResourceOptions options)
    
    type: powerplatform:TenantSettings
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "powerplatform_tenantsettings" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TenantSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TenantSettingsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TenantSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TenantSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TenantSettingsArgs
    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 tenantSettingsResource = new Powerplatform.TenantSettings("tenantSettingsResource", new()
    {
        DisableCapacityAllocationByEnvironmentAdmins = false,
        DisableEnvironmentCreationByNonAdminUsers = false,
        DisableNPSCommentsReachout = false,
        DisableNewsletterSendout = false,
        DisablePortalsCreationByNonAdminUsers = false,
        DisableSupportTicketsVisibleByAllUsers = false,
        DisableSurveyFeedback = false,
        DisableTrialEnvironmentCreationByNonAdminUsers = false,
        PowerPlatform = new Powerplatform.Inputs.TenantPowerPlatformSettingsArgs
        {
            CatalogSettings = new Powerplatform.Inputs.TenantCatalogSettingsArgs
            {
                PowerCatalogAudienceSetting = "string",
            },
            Champions = new Powerplatform.Inputs.TenantChampionsSettingsArgs
            {
                DisableChampionsInvitationReachout = false,
                DisableSkillsMatchInvitationReachout = false,
            },
            Environments = new Powerplatform.Inputs.TenantEnvironmentsSettingsArgs
            {
                DisablePreferredDataLocationForTeamsEnvironment = false,
            },
            Governance = new Powerplatform.Inputs.TenantGovernanceSettingsArgs
            {
                DisableAdminDigest = false,
                DisableDeveloperEnvironmentCreationByNonAdminUsers = false,
                EnableDefaultEnvironmentRouting = false,
                EnvironmentRoutingAllMakers = false,
                EnvironmentRoutingTargetEnvironmentGroupId = "string",
                EnvironmentRoutingTargetSecurityGroupId = "string",
                Policy = new Powerplatform.Inputs.TenantGovernancePolicySettingsArgs
                {
                    EnableDesktopFlowDataPolicyManagement = false,
                },
            },
            Intelligence = new Powerplatform.Inputs.TenantIntelligenceSettingsArgs
            {
                DisableCopilot = false,
                EnableOpenAiBotPublishing = false,
            },
            Licensing = new Powerplatform.Inputs.TenantLicensingSettingsArgs
            {
                DisableBillingPolicyCreationByNonAdminUsers = false,
                DisableUseOfUnassignedAIBuilderCredits = false,
                EnableTenantCapacityReportForEnvironmentAdmins = false,
                EnableTenantLicensingReportForEnvironmentAdmins = false,
                StorageCapacityConsumptionWarningThreshold = 0,
            },
            ModelExperimentation = new Powerplatform.Inputs.TenantModelExperimentationSettingsArgs
            {
                DisableDataLogging = false,
                EnableModelDataSharing = false,
            },
            PowerApps = new Powerplatform.Inputs.TenantPowerAppsSettingsArgs
            {
                DisableConnectionSharingWithEveryone = false,
                DisableCreateFromFigma = false,
                DisableCreateFromImage = false,
                DisableMakerMatch = false,
                DisableShareWithEveryone = false,
                DisableUnusedLicenseAssignment = false,
                EnableGuestsToMake = false,
            },
            PowerAutomate = new Powerplatform.Inputs.TenantPowerAutomateSettingsArgs
            {
                DisableCopilot = false,
            },
            PowerPages = null,
            Search = new Powerplatform.Inputs.TenantSearchSettingsArgs
            {
                DisableBingVideoSearch = false,
                DisableCommunitySearch = false,
                DisableDocsSearch = false,
            },
            TeamsIntegration = new Powerplatform.Inputs.TenantTeamsIntegrationSettingsArgs
            {
                ShareWithColleaguesUserLimit = 0,
            },
            UserManagementSettings = new Powerplatform.Inputs.TenantUserManagementSettingsArgs
            {
                EnableDeleteDisabledUserInAllEnvironments = false,
            },
        },
        WalkMeOptOut = false,
    });
    
    example, err := powerplatform.NewTenantSettings(ctx, "tenantSettingsResource", &powerplatform.TenantSettingsArgs{
    	DisableCapacityAllocationByEnvironmentAdmins:   pulumi.Bool(false),
    	DisableEnvironmentCreationByNonAdminUsers:      pulumi.Bool(false),
    	DisableNPSCommentsReachout:                     pulumi.Bool(false),
    	DisableNewsletterSendout:                       pulumi.Bool(false),
    	DisablePortalsCreationByNonAdminUsers:          pulumi.Bool(false),
    	DisableSupportTicketsVisibleByAllUsers:         pulumi.Bool(false),
    	DisableSurveyFeedback:                          pulumi.Bool(false),
    	DisableTrialEnvironmentCreationByNonAdminUsers: pulumi.Bool(false),
    	PowerPlatform: &powerplatform.TenantPowerPlatformSettingsArgs{
    		CatalogSettings: &powerplatform.TenantCatalogSettingsArgs{
    			PowerCatalogAudienceSetting: pulumi.String("string"),
    		},
    		Champions: &powerplatform.TenantChampionsSettingsArgs{
    			DisableChampionsInvitationReachout:   pulumi.Bool(false),
    			DisableSkillsMatchInvitationReachout: pulumi.Bool(false),
    		},
    		Environments: &powerplatform.TenantEnvironmentsSettingsArgs{
    			DisablePreferredDataLocationForTeamsEnvironment: pulumi.Bool(false),
    		},
    		Governance: &powerplatform.TenantGovernanceSettingsArgs{
    			DisableAdminDigest: pulumi.Bool(false),
    			DisableDeveloperEnvironmentCreationByNonAdminUsers: pulumi.Bool(false),
    			EnableDefaultEnvironmentRouting:                    pulumi.Bool(false),
    			EnvironmentRoutingAllMakers:                        pulumi.Bool(false),
    			EnvironmentRoutingTargetEnvironmentGroupId:         pulumi.String("string"),
    			EnvironmentRoutingTargetSecurityGroupId:            pulumi.String("string"),
    			Policy: &powerplatform.TenantGovernancePolicySettingsArgs{
    				EnableDesktopFlowDataPolicyManagement: pulumi.Bool(false),
    			},
    		},
    		Intelligence: &powerplatform.TenantIntelligenceSettingsArgs{
    			DisableCopilot:            pulumi.Bool(false),
    			EnableOpenAiBotPublishing: pulumi.Bool(false),
    		},
    		Licensing: &powerplatform.TenantLicensingSettingsArgs{
    			DisableBillingPolicyCreationByNonAdminUsers:     pulumi.Bool(false),
    			DisableUseOfUnassignedAIBuilderCredits:          pulumi.Bool(false),
    			EnableTenantCapacityReportForEnvironmentAdmins:  pulumi.Bool(false),
    			EnableTenantLicensingReportForEnvironmentAdmins: pulumi.Bool(false),
    			StorageCapacityConsumptionWarningThreshold:      pulumi.Int(0),
    		},
    		ModelExperimentation: &powerplatform.TenantModelExperimentationSettingsArgs{
    			DisableDataLogging:     pulumi.Bool(false),
    			EnableModelDataSharing: pulumi.Bool(false),
    		},
    		PowerApps: &powerplatform.TenantPowerAppsSettingsArgs{
    			DisableConnectionSharingWithEveryone: pulumi.Bool(false),
    			DisableCreateFromFigma:               pulumi.Bool(false),
    			DisableCreateFromImage:               pulumi.Bool(false),
    			DisableMakerMatch:                    pulumi.Bool(false),
    			DisableShareWithEveryone:             pulumi.Bool(false),
    			DisableUnusedLicenseAssignment:       pulumi.Bool(false),
    			EnableGuestsToMake:                   pulumi.Bool(false),
    		},
    		PowerAutomate: &powerplatform.TenantPowerAutomateSettingsArgs{
    			DisableCopilot: pulumi.Bool(false),
    		},
    		PowerPages: &powerplatform.TenantPowerPagesSettingsArgs{},
    		Search: &powerplatform.TenantSearchSettingsArgs{
    			DisableBingVideoSearch: pulumi.Bool(false),
    			DisableCommunitySearch: pulumi.Bool(false),
    			DisableDocsSearch:      pulumi.Bool(false),
    		},
    		TeamsIntegration: &powerplatform.TenantTeamsIntegrationSettingsArgs{
    			ShareWithColleaguesUserLimit: pulumi.Int(0),
    		},
    		UserManagementSettings: &powerplatform.TenantUserManagementSettingsArgs{
    			EnableDeleteDisabledUserInAllEnvironments: pulumi.Bool(false),
    		},
    	},
    	WalkMeOptOut: pulumi.Bool(false),
    })
    
    resource "powerplatform_tenantsettings" "tenantSettingsResource" {
      disable_capacity_allocation_by_environment_admins     = false
      disable_environment_creation_by_non_admin_users       = false
      disable_nps_comments_reachout                         = false
      disable_newsletter_sendout                            = false
      disable_portals_creation_by_non_admin_users           = false
      disable_support_tickets_visible_by_all_users          = false
      disable_survey_feedback                               = false
      disable_trial_environment_creation_by_non_admin_users = false
      power_platform = {
        catalog_settings = {
          power_catalog_audience_setting = "string"
        }
        champions = {
          disable_champions_invitation_reachout    = false
          disable_skills_match_invitation_reachout = false
        }
        environments = {
          disable_preferred_data_location_for_teams_environment = false
        }
        governance = {
          disable_admin_digest                                      = false
          disable_developer_environment_creation_by_non_admin_users = false
          enable_default_environment_routing                        = false
          environment_routing_all_makers                            = false
          environment_routing_target_environment_group_id           = "string"
          environment_routing_target_security_group_id              = "string"
          policy = {
            enable_desktop_flow_data_policy_management = false
          }
        }
        intelligence = {
          disable_copilot               = false
          enable_open_ai_bot_publishing = false
        }
        licensing = {
          disable_billing_policy_creation_by_non_admin_users    = false
          disable_use_of_unassigned_ai_builder_credits          = false
          enable_tenant_capacity_report_for_environment_admins  = false
          enable_tenant_licensing_report_for_environment_admins = false
          storage_capacity_consumption_warning_threshold        = 0
        }
        model_experimentation = {
          disable_data_logging      = false
          enable_model_data_sharing = false
        }
        power_apps = {
          disable_connection_sharing_with_everyone = false
          disable_create_from_figma                = false
          disable_create_from_image                = false
          disable_maker_match                      = false
          disable_share_with_everyone              = false
          disable_unused_license_assignment        = false
          enable_guests_to_make                    = false
        }
        power_automate = {
          disable_copilot = false
        }
        power_pages = {}
        search = {
          disable_bing_video_search = false
          disable_community_search  = false
          disable_docs_search       = false
        }
        teams_integration = {
          share_with_colleagues_user_limit = 0
        }
        user_management_settings = {
          enable_delete_disabled_user_in_all_environments = false
        }
      }
      walk_me_opt_out = false
    }
    
    var tenantSettingsResource = new TenantSettings("tenantSettingsResource", TenantSettingsArgs.builder()
        .disableCapacityAllocationByEnvironmentAdmins(false)
        .disableEnvironmentCreationByNonAdminUsers(false)
        .disableNPSCommentsReachout(false)
        .disableNewsletterSendout(false)
        .disablePortalsCreationByNonAdminUsers(false)
        .disableSupportTicketsVisibleByAllUsers(false)
        .disableSurveyFeedback(false)
        .disableTrialEnvironmentCreationByNonAdminUsers(false)
        .powerPlatform(TenantPowerPlatformSettingsArgs.builder()
            .catalogSettings(TenantCatalogSettingsArgs.builder()
                .powerCatalogAudienceSetting("string")
                .build())
            .champions(TenantChampionsSettingsArgs.builder()
                .disableChampionsInvitationReachout(false)
                .disableSkillsMatchInvitationReachout(false)
                .build())
            .environments(TenantEnvironmentsSettingsArgs.builder()
                .disablePreferredDataLocationForTeamsEnvironment(false)
                .build())
            .governance(TenantGovernanceSettingsArgs.builder()
                .disableAdminDigest(false)
                .disableDeveloperEnvironmentCreationByNonAdminUsers(false)
                .enableDefaultEnvironmentRouting(false)
                .environmentRoutingAllMakers(false)
                .environmentRoutingTargetEnvironmentGroupId("string")
                .environmentRoutingTargetSecurityGroupId("string")
                .policy(TenantGovernancePolicySettingsArgs.builder()
                    .enableDesktopFlowDataPolicyManagement(false)
                    .build())
                .build())
            .intelligence(TenantIntelligenceSettingsArgs.builder()
                .disableCopilot(false)
                .enableOpenAiBotPublishing(false)
                .build())
            .licensing(TenantLicensingSettingsArgs.builder()
                .disableBillingPolicyCreationByNonAdminUsers(false)
                .disableUseOfUnassignedAIBuilderCredits(false)
                .enableTenantCapacityReportForEnvironmentAdmins(false)
                .enableTenantLicensingReportForEnvironmentAdmins(false)
                .storageCapacityConsumptionWarningThreshold(0)
                .build())
            .modelExperimentation(TenantModelExperimentationSettingsArgs.builder()
                .disableDataLogging(false)
                .enableModelDataSharing(false)
                .build())
            .powerApps(TenantPowerAppsSettingsArgs.builder()
                .disableConnectionSharingWithEveryone(false)
                .disableCreateFromFigma(false)
                .disableCreateFromImage(false)
                .disableMakerMatch(false)
                .disableShareWithEveryone(false)
                .disableUnusedLicenseAssignment(false)
                .enableGuestsToMake(false)
                .build())
            .powerAutomate(TenantPowerAutomateSettingsArgs.builder()
                .disableCopilot(false)
                .build())
            .powerPages(TenantPowerPagesSettingsArgs.builder()
                .build())
            .search(TenantSearchSettingsArgs.builder()
                .disableBingVideoSearch(false)
                .disableCommunitySearch(false)
                .disableDocsSearch(false)
                .build())
            .teamsIntegration(TenantTeamsIntegrationSettingsArgs.builder()
                .shareWithColleaguesUserLimit(0)
                .build())
            .userManagementSettings(TenantUserManagementSettingsArgs.builder()
                .enableDeleteDisabledUserInAllEnvironments(false)
                .build())
            .build())
        .walkMeOptOut(false)
        .build());
    
    tenant_settings_resource = powerplatform.TenantSettings("tenantSettingsResource",
        disable_capacity_allocation_by_environment_admins=False,
        disable_environment_creation_by_non_admin_users=False,
        disable_nps_comments_reachout=False,
        disable_newsletter_sendout=False,
        disable_portals_creation_by_non_admin_users=False,
        disable_support_tickets_visible_by_all_users=False,
        disable_survey_feedback=False,
        disable_trial_environment_creation_by_non_admin_users=False,
        power_platform={
            "catalog_settings": {
                "power_catalog_audience_setting": "string",
            },
            "champions": {
                "disable_champions_invitation_reachout": False,
                "disable_skills_match_invitation_reachout": False,
            },
            "environments": {
                "disable_preferred_data_location_for_teams_environment": False,
            },
            "governance": {
                "disable_admin_digest": False,
                "disable_developer_environment_creation_by_non_admin_users": False,
                "enable_default_environment_routing": False,
                "environment_routing_all_makers": False,
                "environment_routing_target_environment_group_id": "string",
                "environment_routing_target_security_group_id": "string",
                "policy": {
                    "enable_desktop_flow_data_policy_management": False,
                },
            },
            "intelligence": {
                "disable_copilot": False,
                "enable_open_ai_bot_publishing": False,
            },
            "licensing": {
                "disable_billing_policy_creation_by_non_admin_users": False,
                "disable_use_of_unassigned_ai_builder_credits": False,
                "enable_tenant_capacity_report_for_environment_admins": False,
                "enable_tenant_licensing_report_for_environment_admins": False,
                "storage_capacity_consumption_warning_threshold": 0,
            },
            "model_experimentation": {
                "disable_data_logging": False,
                "enable_model_data_sharing": False,
            },
            "power_apps": {
                "disable_connection_sharing_with_everyone": False,
                "disable_create_from_figma": False,
                "disable_create_from_image": False,
                "disable_maker_match": False,
                "disable_share_with_everyone": False,
                "disable_unused_license_assignment": False,
                "enable_guests_to_make": False,
            },
            "power_automate": {
                "disable_copilot": False,
            },
            "power_pages": {},
            "search": {
                "disable_bing_video_search": False,
                "disable_community_search": False,
                "disable_docs_search": False,
            },
            "teams_integration": {
                "share_with_colleagues_user_limit": 0,
            },
            "user_management_settings": {
                "enable_delete_disabled_user_in_all_environments": False,
            },
        },
        walk_me_opt_out=False)
    
    const tenantSettingsResource = new powerplatform.TenantSettings("tenantSettingsResource", {
        disableCapacityAllocationByEnvironmentAdmins: false,
        disableEnvironmentCreationByNonAdminUsers: false,
        disableNPSCommentsReachout: false,
        disableNewsletterSendout: false,
        disablePortalsCreationByNonAdminUsers: false,
        disableSupportTicketsVisibleByAllUsers: false,
        disableSurveyFeedback: false,
        disableTrialEnvironmentCreationByNonAdminUsers: false,
        powerPlatform: {
            catalogSettings: {
                powerCatalogAudienceSetting: "string",
            },
            champions: {
                disableChampionsInvitationReachout: false,
                disableSkillsMatchInvitationReachout: false,
            },
            environments: {
                disablePreferredDataLocationForTeamsEnvironment: false,
            },
            governance: {
                disableAdminDigest: false,
                disableDeveloperEnvironmentCreationByNonAdminUsers: false,
                enableDefaultEnvironmentRouting: false,
                environmentRoutingAllMakers: false,
                environmentRoutingTargetEnvironmentGroupId: "string",
                environmentRoutingTargetSecurityGroupId: "string",
                policy: {
                    enableDesktopFlowDataPolicyManagement: false,
                },
            },
            intelligence: {
                disableCopilot: false,
                enableOpenAiBotPublishing: false,
            },
            licensing: {
                disableBillingPolicyCreationByNonAdminUsers: false,
                disableUseOfUnassignedAIBuilderCredits: false,
                enableTenantCapacityReportForEnvironmentAdmins: false,
                enableTenantLicensingReportForEnvironmentAdmins: false,
                storageCapacityConsumptionWarningThreshold: 0,
            },
            modelExperimentation: {
                disableDataLogging: false,
                enableModelDataSharing: false,
            },
            powerApps: {
                disableConnectionSharingWithEveryone: false,
                disableCreateFromFigma: false,
                disableCreateFromImage: false,
                disableMakerMatch: false,
                disableShareWithEveryone: false,
                disableUnusedLicenseAssignment: false,
                enableGuestsToMake: false,
            },
            powerAutomate: {
                disableCopilot: false,
            },
            powerPages: {},
            search: {
                disableBingVideoSearch: false,
                disableCommunitySearch: false,
                disableDocsSearch: false,
            },
            teamsIntegration: {
                shareWithColleaguesUserLimit: 0,
            },
            userManagementSettings: {
                enableDeleteDisabledUserInAllEnvironments: false,
            },
        },
        walkMeOptOut: false,
    });
    
    type: powerplatform:TenantSettings
    properties:
        disableCapacityAllocationByEnvironmentAdmins: false
        disableEnvironmentCreationByNonAdminUsers: false
        disableNPSCommentsReachout: false
        disableNewsletterSendout: false
        disablePortalsCreationByNonAdminUsers: false
        disableSupportTicketsVisibleByAllUsers: false
        disableSurveyFeedback: false
        disableTrialEnvironmentCreationByNonAdminUsers: false
        powerPlatform:
            catalogSettings:
                powerCatalogAudienceSetting: string
            champions:
                disableChampionsInvitationReachout: false
                disableSkillsMatchInvitationReachout: false
            environments:
                disablePreferredDataLocationForTeamsEnvironment: false
            governance:
                disableAdminDigest: false
                disableDeveloperEnvironmentCreationByNonAdminUsers: false
                enableDefaultEnvironmentRouting: false
                environmentRoutingAllMakers: false
                environmentRoutingTargetEnvironmentGroupId: string
                environmentRoutingTargetSecurityGroupId: string
                policy:
                    enableDesktopFlowDataPolicyManagement: false
            intelligence:
                disableCopilot: false
                enableOpenAiBotPublishing: false
            licensing:
                disableBillingPolicyCreationByNonAdminUsers: false
                disableUseOfUnassignedAIBuilderCredits: false
                enableTenantCapacityReportForEnvironmentAdmins: false
                enableTenantLicensingReportForEnvironmentAdmins: false
                storageCapacityConsumptionWarningThreshold: 0
            modelExperimentation:
                disableDataLogging: false
                enableModelDataSharing: false
            powerApps:
                disableConnectionSharingWithEveryone: false
                disableCreateFromFigma: false
                disableCreateFromImage: false
                disableMakerMatch: false
                disableShareWithEveryone: false
                disableUnusedLicenseAssignment: false
                enableGuestsToMake: false
            powerAutomate:
                disableCopilot: false
            powerPages: {}
            search:
                disableBingVideoSearch: false
                disableCommunitySearch: false
                disableDocsSearch: false
            teamsIntegration:
                shareWithColleaguesUserLimit: 0
            userManagementSettings:
                enableDeleteDisabledUserInAllEnvironments: false
        walkMeOptOut: false
    

    TenantSettings 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 TenantSettings resource accepts the following input properties:

    DisableCapacityAllocationByEnvironmentAdmins bool
    Disable capacity allocation by environment admins.
    DisableEnvironmentCreationByNonAdminUsers bool
    Disable environment creation by non-admin users.
    DisableNPSCommentsReachout bool
    Disable NPS comments reachout.
    DisableNewsletterSendout bool
    Disable newsletter sendout.
    DisablePortalsCreationByNonAdminUsers bool
    Disable Power Pages creation by non-admin users.
    DisableSupportTicketsVisibleByAllUsers bool
    Disable support tickets visibility by all users.
    DisableSurveyFeedback bool
    Disable survey feedback.
    DisableTrialEnvironmentCreationByNonAdminUsers bool
    Disable trial environment creation by non-admin users.
    PowerPlatform TenantPowerPlatformSettings
    Nested workload-specific tenant settings.
    WalkMeOptOut bool
    Walk Me opt-out setting.
    DisableCapacityAllocationByEnvironmentAdmins bool
    Disable capacity allocation by environment admins.
    DisableEnvironmentCreationByNonAdminUsers bool
    Disable environment creation by non-admin users.
    DisableNPSCommentsReachout bool
    Disable NPS comments reachout.
    DisableNewsletterSendout bool
    Disable newsletter sendout.
    DisablePortalsCreationByNonAdminUsers bool
    Disable Power Pages creation by non-admin users.
    DisableSupportTicketsVisibleByAllUsers bool
    Disable support tickets visibility by all users.
    DisableSurveyFeedback bool
    Disable survey feedback.
    DisableTrialEnvironmentCreationByNonAdminUsers bool
    Disable trial environment creation by non-admin users.
    PowerPlatform TenantPowerPlatformSettingsArgs
    Nested workload-specific tenant settings.
    WalkMeOptOut bool
    Walk Me opt-out setting.
    disable_capacity_allocation_by_environment_admins bool
    Disable capacity allocation by environment admins.
    disable_environment_creation_by_non_admin_users bool
    Disable environment creation by non-admin users.
    disable_newsletter_sendout bool
    Disable newsletter sendout.
    disable_nps_comments_reachout bool
    Disable NPS comments reachout.
    disable_portals_creation_by_non_admin_users bool
    Disable Power Pages creation by non-admin users.
    disable_support_tickets_visible_by_all_users bool
    Disable support tickets visibility by all users.
    disable_survey_feedback bool
    Disable survey feedback.
    disable_trial_environment_creation_by_non_admin_users bool
    Disable trial environment creation by non-admin users.
    power_platform object
    Nested workload-specific tenant settings.
    walk_me_opt_out bool
    Walk Me opt-out setting.
    disableCapacityAllocationByEnvironmentAdmins Boolean
    Disable capacity allocation by environment admins.
    disableEnvironmentCreationByNonAdminUsers Boolean
    Disable environment creation by non-admin users.
    disableNPSCommentsReachout Boolean
    Disable NPS comments reachout.
    disableNewsletterSendout Boolean
    Disable newsletter sendout.
    disablePortalsCreationByNonAdminUsers Boolean
    Disable Power Pages creation by non-admin users.
    disableSupportTicketsVisibleByAllUsers Boolean
    Disable support tickets visibility by all users.
    disableSurveyFeedback Boolean
    Disable survey feedback.
    disableTrialEnvironmentCreationByNonAdminUsers Boolean
    Disable trial environment creation by non-admin users.
    powerPlatform TenantPowerPlatformSettings
    Nested workload-specific tenant settings.
    walkMeOptOut Boolean
    Walk Me opt-out setting.
    disableCapacityAllocationByEnvironmentAdmins boolean
    Disable capacity allocation by environment admins.
    disableEnvironmentCreationByNonAdminUsers boolean
    Disable environment creation by non-admin users.
    disableNPSCommentsReachout boolean
    Disable NPS comments reachout.
    disableNewsletterSendout boolean
    Disable newsletter sendout.
    disablePortalsCreationByNonAdminUsers boolean
    Disable Power Pages creation by non-admin users.
    disableSupportTicketsVisibleByAllUsers boolean
    Disable support tickets visibility by all users.
    disableSurveyFeedback boolean
    Disable survey feedback.
    disableTrialEnvironmentCreationByNonAdminUsers boolean
    Disable trial environment creation by non-admin users.
    powerPlatform TenantPowerPlatformSettings
    Nested workload-specific tenant settings.
    walkMeOptOut boolean
    Walk Me opt-out setting.
    disable_capacity_allocation_by_environment_admins bool
    Disable capacity allocation by environment admins.
    disable_environment_creation_by_non_admin_users bool
    Disable environment creation by non-admin users.
    disable_newsletter_sendout bool
    Disable newsletter sendout.
    disable_nps_comments_reachout bool
    Disable NPS comments reachout.
    disable_portals_creation_by_non_admin_users bool
    Disable Power Pages creation by non-admin users.
    disable_support_tickets_visible_by_all_users bool
    Disable support tickets visibility by all users.
    disable_survey_feedback bool
    Disable survey feedback.
    disable_trial_environment_creation_by_non_admin_users bool
    Disable trial environment creation by non-admin users.
    power_platform TenantPowerPlatformSettingsArgs
    Nested workload-specific tenant settings.
    walk_me_opt_out bool
    Walk Me opt-out setting.
    disableCapacityAllocationByEnvironmentAdmins Boolean
    Disable capacity allocation by environment admins.
    disableEnvironmentCreationByNonAdminUsers Boolean
    Disable environment creation by non-admin users.
    disableNPSCommentsReachout Boolean
    Disable NPS comments reachout.
    disableNewsletterSendout Boolean
    Disable newsletter sendout.
    disablePortalsCreationByNonAdminUsers Boolean
    Disable Power Pages creation by non-admin users.
    disableSupportTicketsVisibleByAllUsers Boolean
    Disable support tickets visibility by all users.
    disableSurveyFeedback Boolean
    Disable survey feedback.
    disableTrialEnvironmentCreationByNonAdminUsers Boolean
    Disable trial environment creation by non-admin users.
    powerPlatform Property Map
    Nested workload-specific tenant settings.
    walkMeOptOut Boolean
    Walk Me opt-out setting.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    TenantId string
    The ID of the tenant.
    Id string
    The provider-assigned unique ID for this managed resource.
    TenantId string
    The ID of the tenant.
    id string
    The provider-assigned unique ID for this managed resource.
    tenant_id string
    The ID of the tenant.
    id String
    The provider-assigned unique ID for this managed resource.
    tenantId String
    The ID of the tenant.
    id string
    The provider-assigned unique ID for this managed resource.
    tenantId string
    The ID of the tenant.
    id str
    The provider-assigned unique ID for this managed resource.
    tenant_id str
    The ID of the tenant.
    id String
    The provider-assigned unique ID for this managed resource.
    tenantId String
    The ID of the tenant.

    Supporting Types

    TenantCatalogSettings, TenantCatalogSettingsArgs

    Catalog settings.
    PowerCatalogAudienceSetting string
    Power Catalog audience setting.
    PowerCatalogAudienceSetting string
    Power Catalog audience setting.
    power_catalog_audience_setting string
    Power Catalog audience setting.
    powerCatalogAudienceSetting String
    Power Catalog audience setting.
    powerCatalogAudienceSetting string
    Power Catalog audience setting.
    power_catalog_audience_setting str
    Power Catalog audience setting.
    powerCatalogAudienceSetting String
    Power Catalog audience setting.

    TenantChampionsSettings, TenantChampionsSettingsArgs

    Champions settings.
    DisableChampionsInvitationReachout bool
    Disable champions invitation reachout.
    DisableSkillsMatchInvitationReachout bool
    Disable skills match invitation reachout.
    DisableChampionsInvitationReachout bool
    Disable champions invitation reachout.
    DisableSkillsMatchInvitationReachout bool
    Disable skills match invitation reachout.
    disable_champions_invitation_reachout bool
    Disable champions invitation reachout.
    disable_skills_match_invitation_reachout bool
    Disable skills match invitation reachout.
    disableChampionsInvitationReachout Boolean
    Disable champions invitation reachout.
    disableSkillsMatchInvitationReachout Boolean
    Disable skills match invitation reachout.
    disableChampionsInvitationReachout boolean
    Disable champions invitation reachout.
    disableSkillsMatchInvitationReachout boolean
    Disable skills match invitation reachout.
    disable_champions_invitation_reachout bool
    Disable champions invitation reachout.
    disable_skills_match_invitation_reachout bool
    Disable skills match invitation reachout.
    disableChampionsInvitationReachout Boolean
    Disable champions invitation reachout.
    disableSkillsMatchInvitationReachout Boolean
    Disable skills match invitation reachout.

    TenantEnvironmentsSettings, TenantEnvironmentsSettingsArgs

    Environment settings.
    DisablePreferredDataLocationForTeamsEnvironment bool
    Disable preferred data location for Teams environment creation.
    DisablePreferredDataLocationForTeamsEnvironment bool
    Disable preferred data location for Teams environment creation.
    disable_preferred_data_location_for_teams_environment bool
    Disable preferred data location for Teams environment creation.
    disablePreferredDataLocationForTeamsEnvironment Boolean
    Disable preferred data location for Teams environment creation.
    disablePreferredDataLocationForTeamsEnvironment boolean
    Disable preferred data location for Teams environment creation.
    disable_preferred_data_location_for_teams_environment bool
    Disable preferred data location for Teams environment creation.
    disablePreferredDataLocationForTeamsEnvironment Boolean
    Disable preferred data location for Teams environment creation.

    TenantGovernancePolicySettings, TenantGovernancePolicySettingsArgs

    Governance policy settings.
    EnableDesktopFlowDataPolicyManagement bool
    Enable desktop flow data policy management.
    EnableDesktopFlowDataPolicyManagement bool
    Enable desktop flow data policy management.
    enable_desktop_flow_data_policy_management bool
    Enable desktop flow data policy management.
    enableDesktopFlowDataPolicyManagement Boolean
    Enable desktop flow data policy management.
    enableDesktopFlowDataPolicyManagement boolean
    Enable desktop flow data policy management.
    enable_desktop_flow_data_policy_management bool
    Enable desktop flow data policy management.
    enableDesktopFlowDataPolicyManagement Boolean
    Enable desktop flow data policy management.

    TenantGovernanceSettings, TenantGovernanceSettingsArgs

    Governance settings.
    DisableAdminDigest bool
    Disable admin digest.
    DisableDeveloperEnvironmentCreationByNonAdminUsers bool
    Disable developer environment creation by non-admin users.
    EnableDefaultEnvironmentRouting bool
    Enable default environment routing.
    EnvironmentRoutingAllMakers bool
    Route all makers to personal dev environments.
    EnvironmentRoutingTargetEnvironmentGroupId string
    Target environment group for default environment routing.
    EnvironmentRoutingTargetSecurityGroupId string
    Target security group for default environment routing.
    Policy TenantGovernancePolicySettings
    Governance policy settings.
    DisableAdminDigest bool
    Disable admin digest.
    DisableDeveloperEnvironmentCreationByNonAdminUsers bool
    Disable developer environment creation by non-admin users.
    EnableDefaultEnvironmentRouting bool
    Enable default environment routing.
    EnvironmentRoutingAllMakers bool
    Route all makers to personal dev environments.
    EnvironmentRoutingTargetEnvironmentGroupId string
    Target environment group for default environment routing.
    EnvironmentRoutingTargetSecurityGroupId string
    Target security group for default environment routing.
    Policy TenantGovernancePolicySettings
    Governance policy settings.
    disable_admin_digest bool
    Disable admin digest.
    disable_developer_environment_creation_by_non_admin_users bool
    Disable developer environment creation by non-admin users.
    enable_default_environment_routing bool
    Enable default environment routing.
    environment_routing_all_makers bool
    Route all makers to personal dev environments.
    environment_routing_target_environment_group_id string
    Target environment group for default environment routing.
    environment_routing_target_security_group_id string
    Target security group for default environment routing.
    policy object
    Governance policy settings.
    disableAdminDigest Boolean
    Disable admin digest.
    disableDeveloperEnvironmentCreationByNonAdminUsers Boolean
    Disable developer environment creation by non-admin users.
    enableDefaultEnvironmentRouting Boolean
    Enable default environment routing.
    environmentRoutingAllMakers Boolean
    Route all makers to personal dev environments.
    environmentRoutingTargetEnvironmentGroupId String
    Target environment group for default environment routing.
    environmentRoutingTargetSecurityGroupId String
    Target security group for default environment routing.
    policy TenantGovernancePolicySettings
    Governance policy settings.
    disableAdminDigest boolean
    Disable admin digest.
    disableDeveloperEnvironmentCreationByNonAdminUsers boolean
    Disable developer environment creation by non-admin users.
    enableDefaultEnvironmentRouting boolean
    Enable default environment routing.
    environmentRoutingAllMakers boolean
    Route all makers to personal dev environments.
    environmentRoutingTargetEnvironmentGroupId string
    Target environment group for default environment routing.
    environmentRoutingTargetSecurityGroupId string
    Target security group for default environment routing.
    policy TenantGovernancePolicySettings
    Governance policy settings.
    disable_admin_digest bool
    Disable admin digest.
    disable_developer_environment_creation_by_non_admin_users bool
    Disable developer environment creation by non-admin users.
    enable_default_environment_routing bool
    Enable default environment routing.
    environment_routing_all_makers bool
    Route all makers to personal dev environments.
    environment_routing_target_environment_group_id str
    Target environment group for default environment routing.
    environment_routing_target_security_group_id str
    Target security group for default environment routing.
    policy TenantGovernancePolicySettings
    Governance policy settings.
    disableAdminDigest Boolean
    Disable admin digest.
    disableDeveloperEnvironmentCreationByNonAdminUsers Boolean
    Disable developer environment creation by non-admin users.
    enableDefaultEnvironmentRouting Boolean
    Enable default environment routing.
    environmentRoutingAllMakers Boolean
    Route all makers to personal dev environments.
    environmentRoutingTargetEnvironmentGroupId String
    Target environment group for default environment routing.
    environmentRoutingTargetSecurityGroupId String
    Target security group for default environment routing.
    policy Property Map
    Governance policy settings.

    TenantIntelligenceSettings, TenantIntelligenceSettingsArgs

    Intelligence settings.
    DisableCopilot bool
    Disable Copilot.
    EnableOpenAiBotPublishing bool
    Enable OpenAI bot publishing.
    DisableCopilot bool
    Disable Copilot.
    EnableOpenAiBotPublishing bool
    Enable OpenAI bot publishing.
    disable_copilot bool
    Disable Copilot.
    enable_open_ai_bot_publishing bool
    Enable OpenAI bot publishing.
    disableCopilot Boolean
    Disable Copilot.
    enableOpenAiBotPublishing Boolean
    Enable OpenAI bot publishing.
    disableCopilot boolean
    Disable Copilot.
    enableOpenAiBotPublishing boolean
    Enable OpenAI bot publishing.
    disable_copilot bool
    Disable Copilot.
    enable_open_ai_bot_publishing bool
    Enable OpenAI bot publishing.
    disableCopilot Boolean
    Disable Copilot.
    enableOpenAiBotPublishing Boolean
    Enable OpenAI bot publishing.

    TenantLicensingSettings, TenantLicensingSettingsArgs

    Licensing settings.
    DisableBillingPolicyCreationByNonAdminUsers bool
    Disable billing policy creation by non-admin users.
    DisableUseOfUnassignedAIBuilderCredits bool
    Disable use of unassigned AI Builder credits.
    EnableTenantCapacityReportForEnvironmentAdmins bool
    Enable tenant capacity report for environment admins.
    EnableTenantLicensingReportForEnvironmentAdmins bool
    Enable tenant licensing report for environment admins.
    StorageCapacityConsumptionWarningThreshold int
    Storage capacity consumption warning threshold.
    DisableBillingPolicyCreationByNonAdminUsers bool
    Disable billing policy creation by non-admin users.
    DisableUseOfUnassignedAIBuilderCredits bool
    Disable use of unassigned AI Builder credits.
    EnableTenantCapacityReportForEnvironmentAdmins bool
    Enable tenant capacity report for environment admins.
    EnableTenantLicensingReportForEnvironmentAdmins bool
    Enable tenant licensing report for environment admins.
    StorageCapacityConsumptionWarningThreshold int
    Storage capacity consumption warning threshold.
    disable_billing_policy_creation_by_non_admin_users bool
    Disable billing policy creation by non-admin users.
    disable_use_of_unassigned_ai_builder_credits bool
    Disable use of unassigned AI Builder credits.
    enable_tenant_capacity_report_for_environment_admins bool
    Enable tenant capacity report for environment admins.
    enable_tenant_licensing_report_for_environment_admins bool
    Enable tenant licensing report for environment admins.
    storage_capacity_consumption_warning_threshold number
    Storage capacity consumption warning threshold.
    disableBillingPolicyCreationByNonAdminUsers Boolean
    Disable billing policy creation by non-admin users.
    disableUseOfUnassignedAIBuilderCredits Boolean
    Disable use of unassigned AI Builder credits.
    enableTenantCapacityReportForEnvironmentAdmins Boolean
    Enable tenant capacity report for environment admins.
    enableTenantLicensingReportForEnvironmentAdmins Boolean
    Enable tenant licensing report for environment admins.
    storageCapacityConsumptionWarningThreshold Integer
    Storage capacity consumption warning threshold.
    disableBillingPolicyCreationByNonAdminUsers boolean
    Disable billing policy creation by non-admin users.
    disableUseOfUnassignedAIBuilderCredits boolean
    Disable use of unassigned AI Builder credits.
    enableTenantCapacityReportForEnvironmentAdmins boolean
    Enable tenant capacity report for environment admins.
    enableTenantLicensingReportForEnvironmentAdmins boolean
    Enable tenant licensing report for environment admins.
    storageCapacityConsumptionWarningThreshold number
    Storage capacity consumption warning threshold.
    disable_billing_policy_creation_by_non_admin_users bool
    Disable billing policy creation by non-admin users.
    disable_use_of_unassigned_ai_builder_credits bool
    Disable use of unassigned AI Builder credits.
    enable_tenant_capacity_report_for_environment_admins bool
    Enable tenant capacity report for environment admins.
    enable_tenant_licensing_report_for_environment_admins bool
    Enable tenant licensing report for environment admins.
    storage_capacity_consumption_warning_threshold int
    Storage capacity consumption warning threshold.
    disableBillingPolicyCreationByNonAdminUsers Boolean
    Disable billing policy creation by non-admin users.
    disableUseOfUnassignedAIBuilderCredits Boolean
    Disable use of unassigned AI Builder credits.
    enableTenantCapacityReportForEnvironmentAdmins Boolean
    Enable tenant capacity report for environment admins.
    enableTenantLicensingReportForEnvironmentAdmins Boolean
    Enable tenant licensing report for environment admins.
    storageCapacityConsumptionWarningThreshold Number
    Storage capacity consumption warning threshold.

    TenantModelExperimentationSettings, TenantModelExperimentationSettingsArgs

    Model experimentation settings.
    DisableDataLogging bool
    Disable data logging.
    EnableModelDataSharing bool
    Enable model data sharing.
    DisableDataLogging bool
    Disable data logging.
    EnableModelDataSharing bool
    Enable model data sharing.
    disable_data_logging bool
    Disable data logging.
    enable_model_data_sharing bool
    Enable model data sharing.
    disableDataLogging Boolean
    Disable data logging.
    enableModelDataSharing Boolean
    Enable model data sharing.
    disableDataLogging boolean
    Disable data logging.
    enableModelDataSharing boolean
    Enable model data sharing.
    disable_data_logging bool
    Disable data logging.
    enable_model_data_sharing bool
    Enable model data sharing.
    disableDataLogging Boolean
    Disable data logging.
    enableModelDataSharing Boolean
    Enable model data sharing.

    TenantPowerAppsSettings, TenantPowerAppsSettingsArgs

    Power Apps settings.
    DisableConnectionSharingWithEveryone bool
    Disable connection sharing with everyone.
    DisableCreateFromFigma bool
    Disable create from Figma.
    DisableCreateFromImage bool
    Disable create from image.
    DisableMakerMatch bool
    Disable maker match.
    DisableShareWithEveryone bool
    Disable share with everyone.
    DisableUnusedLicenseAssignment bool
    Disable unused license assignment.
    EnableGuestsToMake bool
    Enable guests to make apps.
    DisableConnectionSharingWithEveryone bool
    Disable connection sharing with everyone.
    DisableCreateFromFigma bool
    Disable create from Figma.
    DisableCreateFromImage bool
    Disable create from image.
    DisableMakerMatch bool
    Disable maker match.
    DisableShareWithEveryone bool
    Disable share with everyone.
    DisableUnusedLicenseAssignment bool
    Disable unused license assignment.
    EnableGuestsToMake bool
    Enable guests to make apps.
    disable_connection_sharing_with_everyone bool
    Disable connection sharing with everyone.
    disable_create_from_figma bool
    Disable create from Figma.
    disable_create_from_image bool
    Disable create from image.
    disable_maker_match bool
    Disable maker match.
    disable_share_with_everyone bool
    Disable share with everyone.
    disable_unused_license_assignment bool
    Disable unused license assignment.
    enable_guests_to_make bool
    Enable guests to make apps.
    disableConnectionSharingWithEveryone Boolean
    Disable connection sharing with everyone.
    disableCreateFromFigma Boolean
    Disable create from Figma.
    disableCreateFromImage Boolean
    Disable create from image.
    disableMakerMatch Boolean
    Disable maker match.
    disableShareWithEveryone Boolean
    Disable share with everyone.
    disableUnusedLicenseAssignment Boolean
    Disable unused license assignment.
    enableGuestsToMake Boolean
    Enable guests to make apps.
    disableConnectionSharingWithEveryone boolean
    Disable connection sharing with everyone.
    disableCreateFromFigma boolean
    Disable create from Figma.
    disableCreateFromImage boolean
    Disable create from image.
    disableMakerMatch boolean
    Disable maker match.
    disableShareWithEveryone boolean
    Disable share with everyone.
    disableUnusedLicenseAssignment boolean
    Disable unused license assignment.
    enableGuestsToMake boolean
    Enable guests to make apps.
    disable_connection_sharing_with_everyone bool
    Disable connection sharing with everyone.
    disable_create_from_figma bool
    Disable create from Figma.
    disable_create_from_image bool
    Disable create from image.
    disable_maker_match bool
    Disable maker match.
    disable_share_with_everyone bool
    Disable share with everyone.
    disable_unused_license_assignment bool
    Disable unused license assignment.
    enable_guests_to_make bool
    Enable guests to make apps.
    disableConnectionSharingWithEveryone Boolean
    Disable connection sharing with everyone.
    disableCreateFromFigma Boolean
    Disable create from Figma.
    disableCreateFromImage Boolean
    Disable create from image.
    disableMakerMatch Boolean
    Disable maker match.
    disableShareWithEveryone Boolean
    Disable share with everyone.
    disableUnusedLicenseAssignment Boolean
    Disable unused license assignment.
    enableGuestsToMake Boolean
    Enable guests to make apps.

    TenantPowerAutomateSettings, TenantPowerAutomateSettingsArgs

    Power Automate settings.
    DisableCopilot bool
    Disable Copilot for Power Automate.
    DisableCopilot bool
    Disable Copilot for Power Automate.
    disable_copilot bool
    Disable Copilot for Power Automate.
    disableCopilot Boolean
    Disable Copilot for Power Automate.
    disableCopilot boolean
    Disable Copilot for Power Automate.
    disable_copilot bool
    Disable Copilot for Power Automate.
    disableCopilot Boolean
    Disable Copilot for Power Automate.

    TenantPowerPlatformSettings, TenantPowerPlatformSettingsArgs

    Power Platform workload settings at tenant scope.
    catalog_settings object
    Catalog settings.
    champions object
    Champions settings.
    environments object
    Environment settings.
    governance object
    Governance settings.
    intelligence object
    Intelligence settings.
    licensing object
    Licensing settings.
    model_experimentation object
    Model experimentation settings.
    power_apps object
    Power Apps settings.
    power_automate object
    Power Automate settings.
    power_pages object
    Power Pages settings.
    search object
    Search settings.
    teams_integration object
    Teams integration settings.
    user_management_settings object
    User management settings.
    catalogSettings Property Map
    Catalog settings.
    champions Property Map
    Champions settings.
    environments Property Map
    Environment settings.
    governance Property Map
    Governance settings.
    intelligence Property Map
    Intelligence settings.
    licensing Property Map
    Licensing settings.
    modelExperimentation Property Map
    Model experimentation settings.
    powerApps Property Map
    Power Apps settings.
    powerAutomate Property Map
    Power Automate settings.
    powerPages Property Map
    Power Pages settings.
    search Property Map
    Search settings.
    teamsIntegration Property Map
    Teams integration settings.
    userManagementSettings Property Map
    User management settings.

    TenantSearchSettings, TenantSearchSettingsArgs

    Search settings.
    DisableBingVideoSearch bool
    Disable Bing video search.
    DisableCommunitySearch bool
    Disable community search.
    DisableDocsSearch bool
    Disable docs search.
    DisableBingVideoSearch bool
    Disable Bing video search.
    DisableCommunitySearch bool
    Disable community search.
    DisableDocsSearch bool
    Disable docs search.
    disable_bing_video_search bool
    Disable Bing video search.
    disable_community_search bool
    Disable community search.
    disable_docs_search bool
    Disable docs search.
    disableBingVideoSearch Boolean
    Disable Bing video search.
    disableCommunitySearch Boolean
    Disable community search.
    disableDocsSearch Boolean
    Disable docs search.
    disableBingVideoSearch boolean
    Disable Bing video search.
    disableCommunitySearch boolean
    Disable community search.
    disableDocsSearch boolean
    Disable docs search.
    disable_bing_video_search bool
    Disable Bing video search.
    disable_community_search bool
    Disable community search.
    disable_docs_search bool
    Disable docs search.
    disableBingVideoSearch Boolean
    Disable Bing video search.
    disableCommunitySearch Boolean
    Disable community search.
    disableDocsSearch Boolean
    Disable docs search.

    TenantTeamsIntegrationSettings, TenantTeamsIntegrationSettingsArgs

    Teams integration settings.
    ShareWithColleaguesUserLimit int
    Share with colleagues user limit.
    ShareWithColleaguesUserLimit int
    Share with colleagues user limit.
    share_with_colleagues_user_limit number
    Share with colleagues user limit.
    shareWithColleaguesUserLimit Integer
    Share with colleagues user limit.
    shareWithColleaguesUserLimit number
    Share with colleagues user limit.
    share_with_colleagues_user_limit int
    Share with colleagues user limit.
    shareWithColleaguesUserLimit Number
    Share with colleagues user limit.

    TenantUserManagementSettings, TenantUserManagementSettingsArgs

    User management settings.
    EnableDeleteDisabledUserInAllEnvironments bool
    Enable delete disabled user in all environments.
    EnableDeleteDisabledUserInAllEnvironments bool
    Enable delete disabled user in all environments.
    enable_delete_disabled_user_in_all_environments bool
    Enable delete disabled user in all environments.
    enableDeleteDisabledUserInAllEnvironments Boolean
    Enable delete disabled user in all environments.
    enableDeleteDisabledUserInAllEnvironments boolean
    Enable delete disabled user in all environments.
    enable_delete_disabled_user_in_all_environments bool
    Enable delete disabled user in all environments.
    enableDeleteDisabledUserInAllEnvironments Boolean
    Enable delete disabled user in all environments.

    Package Details

    Repository
    powerplatform rpothin/pulumi-powerplatform
    License
    MIT
    powerplatform logo
    Viewing docs for Power Platform v0.3.3
    published on Monday, May 18, 2026 by rpothin

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial