1. Packages
  2. Azure Classic
  3. API Docs
  4. managedapplication
  5. Application

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Managed Application.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var current = Output.Create(Azure.Core.GetClientConfig.InvokeAsync());
            var builtin = Output.Create(Azure.Authorization.GetRoleDefinition.InvokeAsync(new Azure.Authorization.GetRoleDefinitionArgs
            {
                Name = "Contributor",
            }));
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleDefinition = new Azure.ManagedApplication.Definition("exampleDefinition", new Azure.ManagedApplication.DefinitionArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
                LockLevel = "ReadOnly",
                PackageFileUri = "https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip",
                DisplayName = "TestManagedAppDefinition",
                Description = "Test Managed App Definition",
                Authorizations = 
                {
                    new Azure.ManagedApplication.Inputs.DefinitionAuthorizationArgs
                    {
                        ServicePrincipalId = current.Apply(current => current.ObjectId),
                        RoleDefinitionId = Output.Tuple(builtin.Apply(builtin => builtin.Id.Split("/")), builtin.Apply(builtin => builtin.Id.Split("/")).Length).Apply(values =>
                        {
                            var split = values.Item1;
                            var length = values.Item2;
                            return split[length - 1];
                        }),
                    },
                },
            });
            var exampleApplication = new Azure.ManagedApplication.Application("exampleApplication", new Azure.ManagedApplication.ApplicationArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
                Kind = "ServiceCatalog",
                ManagedResourceGroupName = "infrastructureGroup",
                ApplicationDefinitionId = exampleDefinition.Id,
                Parameters = 
                {
                    { "location", exampleResourceGroup.Location },
                    { "storageAccountNamePrefix", "storeNamePrefix" },
                    { "storageAccountType", "Standard_LRS" },
                },
            });
        }
    
    }
    

    Example coming soon!

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const current = azure.core.getClientConfig({});
    const builtin = azure.authorization.getRoleDefinition({
        name: "Contributor",
    });
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleDefinition = new azure.managedapplication.Definition("exampleDefinition", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        lockLevel: "ReadOnly",
        packageFileUri: "https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip",
        displayName: "TestManagedAppDefinition",
        description: "Test Managed App Definition",
        authorizations: [{
            servicePrincipalId: current.then(current => current.objectId),
            roleDefinitionId: Promise.all([builtin.then(builtin => builtin.id.split("/")), builtin.then(builtin => builtin.id.split("/")).length]).then(([split, length]) => split[length - 1]),
        }],
    });
    const exampleApplication = new azure.managedapplication.Application("exampleApplication", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        kind: "ServiceCatalog",
        managedResourceGroupName: "infrastructureGroup",
        applicationDefinitionId: exampleDefinition.id,
        parameters: {
            location: exampleResourceGroup.location,
            storageAccountNamePrefix: "storeNamePrefix",
            storageAccountType: "Standard_LRS",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    current = azure.core.get_client_config()
    builtin = azure.authorization.get_role_definition(name="Contributor")
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_definition = azure.managedapplication.Definition("exampleDefinition",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        lock_level="ReadOnly",
        package_file_uri="https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip",
        display_name="TestManagedAppDefinition",
        description="Test Managed App Definition",
        authorizations=[azure.managedapplication.DefinitionAuthorizationArgs(
            service_principal_id=current.object_id,
            role_definition_id=builtin.id.split("/")[len(builtin.id.split("/")) - 1],
        )])
    example_application = azure.managedapplication.Application("exampleApplication",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        kind="ServiceCatalog",
        managed_resource_group_name="infrastructureGroup",
        application_definition_id=example_definition.id,
        parameters={
            "location": example_resource_group.location,
            "storageAccountNamePrefix": "storeNamePrefix",
            "storageAccountType": "Standard_LRS",
        })
    

    Example coming soon!

    Create Application Resource

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

    Constructor syntax

    new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def Application(resource_name: str,
                    args: ApplicationArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Application(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    kind: Optional[str] = None,
                    managed_resource_group_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    application_definition_id: Optional[str] = None,
                    location: Optional[str] = None,
                    name: Optional[str] = None,
                    parameter_values: Optional[str] = None,
                    parameters: Optional[Mapping[str, str]] = None,
                    plan: Optional[ApplicationPlanArgs] = None,
                    tags: Optional[Mapping[str, str]] = None)
    func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)
    public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
    public Application(String name, ApplicationArgs args)
    public Application(String name, ApplicationArgs args, CustomResourceOptions options)
    
    type: azure:managedapplication:Application
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ApplicationArgs
    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 ApplicationArgs
    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 ApplicationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationArgs
    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 exampleapplicationResourceResourceFromManagedapplicationapplication = new Azure.ManagedApplication.Application("exampleapplicationResourceResourceFromManagedapplicationapplication", new()
    {
        Kind = "string",
        ManagedResourceGroupName = "string",
        ResourceGroupName = "string",
        ApplicationDefinitionId = "string",
        Location = "string",
        Name = "string",
        ParameterValues = "string",
        Parameters = 
        {
            { "string", "string" },
        },
        Plan = new Azure.ManagedApplication.Inputs.ApplicationPlanArgs
        {
            Name = "string",
            Product = "string",
            Publisher = "string",
            Version = "string",
            PromotionCode = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := managedapplication.NewApplication(ctx, "exampleapplicationResourceResourceFromManagedapplicationapplication", &managedapplication.ApplicationArgs{
    	Kind:                     pulumi.String("string"),
    	ManagedResourceGroupName: pulumi.String("string"),
    	ResourceGroupName:        pulumi.String("string"),
    	ApplicationDefinitionId:  pulumi.String("string"),
    	Location:                 pulumi.String("string"),
    	Name:                     pulumi.String("string"),
    	ParameterValues:          pulumi.String("string"),
    	Parameters: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Plan: &managedapplication.ApplicationPlanArgs{
    		Name:          pulumi.String("string"),
    		Product:       pulumi.String("string"),
    		Publisher:     pulumi.String("string"),
    		Version:       pulumi.String("string"),
    		PromotionCode: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var exampleapplicationResourceResourceFromManagedapplicationapplication = new com.pulumi.azure.managedapplication.Application("exampleapplicationResourceResourceFromManagedapplicationapplication", com.pulumi.azure.managedapplication.ApplicationArgs.builder()
        .kind("string")
        .managedResourceGroupName("string")
        .resourceGroupName("string")
        .applicationDefinitionId("string")
        .location("string")
        .name("string")
        .parameterValues("string")
        .parameters(Map.of("string", "string"))
        .plan(ApplicationPlanArgs.builder()
            .name("string")
            .product("string")
            .publisher("string")
            .version("string")
            .promotionCode("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    exampleapplication_resource_resource_from_managedapplicationapplication = azure.managedapplication.Application("exampleapplicationResourceResourceFromManagedapplicationapplication",
        kind="string",
        managed_resource_group_name="string",
        resource_group_name="string",
        application_definition_id="string",
        location="string",
        name="string",
        parameter_values="string",
        parameters={
            "string": "string",
        },
        plan={
            "name": "string",
            "product": "string",
            "publisher": "string",
            "version": "string",
            "promotion_code": "string",
        },
        tags={
            "string": "string",
        })
    
    const exampleapplicationResourceResourceFromManagedapplicationapplication = new azure.managedapplication.Application("exampleapplicationResourceResourceFromManagedapplicationapplication", {
        kind: "string",
        managedResourceGroupName: "string",
        resourceGroupName: "string",
        applicationDefinitionId: "string",
        location: "string",
        name: "string",
        parameterValues: "string",
        parameters: {
            string: "string",
        },
        plan: {
            name: "string",
            product: "string",
            publisher: "string",
            version: "string",
            promotionCode: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure:managedapplication:Application
    properties:
        applicationDefinitionId: string
        kind: string
        location: string
        managedResourceGroupName: string
        name: string
        parameterValues: string
        parameters:
            string: string
        plan:
            name: string
            product: string
            promotionCode: string
            publisher: string
            version: string
        resourceGroupName: string
        tags:
            string: string
    

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

    Kind string
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    ManagedResourceGroupName string
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    ApplicationDefinitionId string
    The application definition ID to deploy.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    ParameterValues string
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    Parameters Dictionary<string, string>
    A mapping of name and value pairs to pass to the managed application as parameters.
    Plan ApplicationPlan
    One plan block as defined below.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Kind string
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    ManagedResourceGroupName string
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    ApplicationDefinitionId string
    The application definition ID to deploy.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    ParameterValues string
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    Parameters map[string]string
    A mapping of name and value pairs to pass to the managed application as parameters.
    Plan ApplicationPlanArgs
    One plan block as defined below.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    kind String
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    managedResourceGroupName String
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    applicationDefinitionId String
    The application definition ID to deploy.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    parameterValues String
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters Map<String,String>
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan ApplicationPlan
    One plan block as defined below.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    kind string
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    managedResourceGroupName string
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    applicationDefinitionId string
    The application definition ID to deploy.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    parameterValues string
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters {[key: string]: string}
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan ApplicationPlan
    One plan block as defined below.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    kind str
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    managed_resource_group_name str
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    application_definition_id str
    The application definition ID to deploy.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    parameter_values str
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters Mapping[str, str]
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan ApplicationPlanArgs
    One plan block as defined below.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    kind String
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    managedResourceGroupName String
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    applicationDefinitionId String
    The application definition ID to deploy.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    parameterValues String
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters Map<String>
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan Property Map
    One plan block as defined below.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Outputs Dictionary<string, string>
    The name and value pairs that define the managed application outputs.
    Id string
    The provider-assigned unique ID for this managed resource.
    Outputs map[string]string
    The name and value pairs that define the managed application outputs.
    id String
    The provider-assigned unique ID for this managed resource.
    outputs Map<String,String>
    The name and value pairs that define the managed application outputs.
    id string
    The provider-assigned unique ID for this managed resource.
    outputs {[key: string]: string}
    The name and value pairs that define the managed application outputs.
    id str
    The provider-assigned unique ID for this managed resource.
    outputs Mapping[str, str]
    The name and value pairs that define the managed application outputs.
    id String
    The provider-assigned unique ID for this managed resource.
    outputs Map<String>
    The name and value pairs that define the managed application outputs.

    Look up Existing Application Resource

    Get an existing Application 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?: ApplicationState, opts?: CustomResourceOptions): Application
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_definition_id: Optional[str] = None,
            kind: Optional[str] = None,
            location: Optional[str] = None,
            managed_resource_group_name: Optional[str] = None,
            name: Optional[str] = None,
            outputs: Optional[Mapping[str, str]] = None,
            parameter_values: Optional[str] = None,
            parameters: Optional[Mapping[str, str]] = None,
            plan: Optional[ApplicationPlanArgs] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> Application
    func GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)
    public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)
    public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)
    resources:  _:    type: azure:managedapplication:Application    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    ApplicationDefinitionId string
    The application definition ID to deploy.
    Kind string
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    ManagedResourceGroupName string
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    Outputs Dictionary<string, string>
    The name and value pairs that define the managed application outputs.
    ParameterValues string
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    Parameters Dictionary<string, string>
    A mapping of name and value pairs to pass to the managed application as parameters.
    Plan ApplicationPlan
    One plan block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    ApplicationDefinitionId string
    The application definition ID to deploy.
    Kind string
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    ManagedResourceGroupName string
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    Outputs map[string]string
    The name and value pairs that define the managed application outputs.
    ParameterValues string
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    Parameters map[string]string
    A mapping of name and value pairs to pass to the managed application as parameters.
    Plan ApplicationPlanArgs
    One plan block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    applicationDefinitionId String
    The application definition ID to deploy.
    kind String
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    managedResourceGroupName String
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    outputs Map<String,String>
    The name and value pairs that define the managed application outputs.
    parameterValues String
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters Map<String,String>
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan ApplicationPlan
    One plan block as defined below.
    resourceGroupName String
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    applicationDefinitionId string
    The application definition ID to deploy.
    kind string
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    managedResourceGroupName string
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    outputs {[key: string]: string}
    The name and value pairs that define the managed application outputs.
    parameterValues string
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters {[key: string]: string}
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan ApplicationPlan
    One plan block as defined below.
    resourceGroupName string
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    application_definition_id str
    The application definition ID to deploy.
    kind str
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    managed_resource_group_name str
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    outputs Mapping[str, str]
    The name and value pairs that define the managed application outputs.
    parameter_values str
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters Mapping[str, str]
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan ApplicationPlanArgs
    One plan block as defined below.
    resource_group_name str
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    applicationDefinitionId String
    The application definition ID to deploy.
    kind String
    The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    managedResourceGroupName String
    The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Application. Changing this forces a new resource to be created.
    outputs Map<String>
    The name and value pairs that define the managed application outputs.
    parameterValues String
    The parameter values to pass to the Managed Application. This field is a json object that allows you to assign parameters to this Managed Application.
    parameters Map<String>
    A mapping of name and value pairs to pass to the managed application as parameters.
    plan Property Map
    One plan block as defined below.
    resourceGroupName String
    The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Supporting Types

    ApplicationPlan, ApplicationPlanArgs

    Name string
    Specifies the name of the plan from the marketplace.
    Product string
    Specifies the product of the plan from the marketplace.
    Publisher string
    Specifies the publisher of the plan.
    Version string
    Specifies the version of the plan from the marketplace.
    PromotionCode string
    Specifies the promotion code to use with the plan.
    Name string
    Specifies the name of the plan from the marketplace.
    Product string
    Specifies the product of the plan from the marketplace.
    Publisher string
    Specifies the publisher of the plan.
    Version string
    Specifies the version of the plan from the marketplace.
    PromotionCode string
    Specifies the promotion code to use with the plan.
    name String
    Specifies the name of the plan from the marketplace.
    product String
    Specifies the product of the plan from the marketplace.
    publisher String
    Specifies the publisher of the plan.
    version String
    Specifies the version of the plan from the marketplace.
    promotionCode String
    Specifies the promotion code to use with the plan.
    name string
    Specifies the name of the plan from the marketplace.
    product string
    Specifies the product of the plan from the marketplace.
    publisher string
    Specifies the publisher of the plan.
    version string
    Specifies the version of the plan from the marketplace.
    promotionCode string
    Specifies the promotion code to use with the plan.
    name str
    Specifies the name of the plan from the marketplace.
    product str
    Specifies the product of the plan from the marketplace.
    publisher str
    Specifies the publisher of the plan.
    version str
    Specifies the version of the plan from the marketplace.
    promotion_code str
    Specifies the promotion code to use with the plan.
    name String
    Specifies the name of the plan from the marketplace.
    product String
    Specifies the product of the plan from the marketplace.
    publisher String
    Specifies the publisher of the plan.
    version String
    Specifies the version of the plan from the marketplace.
    promotionCode String
    Specifies the promotion code to use with the plan.

    Import

    Managed Application can be imported using the resource id, e.g.

     $ pulumi import azure:managedapplication/application:Application example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Solutions/applications/app1
    

    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.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.