1. Packages
  2. Azure Native v2
  3. API Docs
  4. app
  5. ManagedEnvironment
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.app.ManagedEnvironment

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

An environment for hosting container apps Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.

Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview.

Example Usage

Create environments

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var managedEnvironment = new AzureNative.App.ManagedEnvironment("managedEnvironment", new()
    {
        AppLogsConfiguration = new AzureNative.App.Inputs.AppLogsConfigurationArgs
        {
            LogAnalyticsConfiguration = new AzureNative.App.Inputs.LogAnalyticsConfigurationArgs
            {
                CustomerId = "string",
                SharedKey = "string",
            },
        },
        CustomDomainConfiguration = new AzureNative.App.Inputs.CustomDomainConfigurationArgs
        {
            CertificatePassword = "private key password",
            CertificateValue = "Y2VydA==",
            DnsSuffix = "www.my-name.com",
        },
        DaprAIConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
        EnvironmentName = "testcontainerenv",
        Kind = "serverless",
        Location = "East US",
        ResourceGroupName = "examplerg",
        Sku = new AzureNative.App.Inputs.EnvironmentSkuPropertiesArgs
        {
            Name = AzureNative.App.SkuName.Premium,
        },
        VnetConfiguration = new AzureNative.App.Inputs.VnetConfigurationArgs
        {
            OutboundSettings = new AzureNative.App.Inputs.ManagedEnvironmentOutboundSettingsArgs
            {
                OutBoundType = AzureNative.App.ManagedEnvironmentOutBoundType.UserDefinedRouting,
                VirtualNetworkApplianceIp = "192.168.1.20",
            },
        },
        WorkloadProfiles = new[]
        {
            new AzureNative.App.Inputs.WorkloadProfileArgs
            {
                MaximumCount = 12,
                MinimumCount = 3,
                WorkloadProfileType = "GeneralPurpose",
            },
            new AzureNative.App.Inputs.WorkloadProfileArgs
            {
                MaximumCount = 6,
                MinimumCount = 3,
                WorkloadProfileType = "MemoryOptimized",
            },
            new AzureNative.App.Inputs.WorkloadProfileArgs
            {
                MaximumCount = 6,
                MinimumCount = 3,
                WorkloadProfileType = "ComputeOptimized",
            },
        },
        ZoneRedundant = true,
    });

});
Copy
package main

import (
	app "github.com/pulumi/pulumi-azure-native-sdk/app/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := app.NewManagedEnvironment(ctx, "managedEnvironment", &app.ManagedEnvironmentArgs{
			AppLogsConfiguration: &app.AppLogsConfigurationArgs{
				LogAnalyticsConfiguration: &app.LogAnalyticsConfigurationArgs{
					CustomerId: pulumi.String("string"),
					SharedKey:  pulumi.String("string"),
				},
			},
			CustomDomainConfiguration: &app.CustomDomainConfigurationArgs{
				CertificatePassword: pulumi.String("private key password"),
				CertificateValue:    pulumi.String("Y2VydA=="),
				DnsSuffix:           pulumi.String("www.my-name.com"),
			},
			DaprAIConnectionString: pulumi.String("InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/"),
			EnvironmentName:        pulumi.String("testcontainerenv"),
			Kind:                   pulumi.String("serverless"),
			Location:               pulumi.String("East US"),
			ResourceGroupName:      pulumi.String("examplerg"),
			Sku: &app.EnvironmentSkuPropertiesArgs{
				Name: pulumi.String(app.SkuNamePremium),
			},
			VnetConfiguration: &app.VnetConfigurationArgs{
				OutboundSettings: &app.ManagedEnvironmentOutboundSettingsArgs{
					OutBoundType:              pulumi.String(app.ManagedEnvironmentOutBoundTypeUserDefinedRouting),
					VirtualNetworkApplianceIp: pulumi.String("192.168.1.20"),
				},
			},
			WorkloadProfiles: app.WorkloadProfileArray{
				&app.WorkloadProfileArgs{
					MaximumCount:        pulumi.Int(12),
					MinimumCount:        pulumi.Int(3),
					WorkloadProfileType: pulumi.String("GeneralPurpose"),
				},
				&app.WorkloadProfileArgs{
					MaximumCount:        pulumi.Int(6),
					MinimumCount:        pulumi.Int(3),
					WorkloadProfileType: pulumi.String("MemoryOptimized"),
				},
				&app.WorkloadProfileArgs{
					MaximumCount:        pulumi.Int(6),
					MinimumCount:        pulumi.Int(3),
					WorkloadProfileType: pulumi.String("ComputeOptimized"),
				},
			},
			ZoneRedundant: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.app.ManagedEnvironment;
import com.pulumi.azurenative.app.ManagedEnvironmentArgs;
import com.pulumi.azurenative.app.inputs.AppLogsConfigurationArgs;
import com.pulumi.azurenative.app.inputs.LogAnalyticsConfigurationArgs;
import com.pulumi.azurenative.app.inputs.CustomDomainConfigurationArgs;
import com.pulumi.azurenative.app.inputs.EnvironmentSkuPropertiesArgs;
import com.pulumi.azurenative.app.inputs.VnetConfigurationArgs;
import com.pulumi.azurenative.app.inputs.ManagedEnvironmentOutboundSettingsArgs;
import com.pulumi.azurenative.app.inputs.WorkloadProfileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

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

    public static void stack(Context ctx) {
        var managedEnvironment = new ManagedEnvironment("managedEnvironment", ManagedEnvironmentArgs.builder()
            .appLogsConfiguration(AppLogsConfigurationArgs.builder()
                .logAnalyticsConfiguration(LogAnalyticsConfigurationArgs.builder()
                    .customerId("string")
                    .sharedKey("string")
                    .build())
                .build())
            .customDomainConfiguration(CustomDomainConfigurationArgs.builder()
                .certificatePassword("private key password")
                .certificateValue("Y2VydA==")
                .dnsSuffix("www.my-name.com")
                .build())
            .daprAIConnectionString("InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/")
            .environmentName("testcontainerenv")
            .kind("serverless")
            .location("East US")
            .resourceGroupName("examplerg")
            .sku(EnvironmentSkuPropertiesArgs.builder()
                .name("Premium")
                .build())
            .vnetConfiguration(VnetConfigurationArgs.builder()
                .outboundSettings(ManagedEnvironmentOutboundSettingsArgs.builder()
                    .outBoundType("UserDefinedRouting")
                    .virtualNetworkApplianceIp("192.168.1.20")
                    .build())
                .build())
            .workloadProfiles(            
                WorkloadProfileArgs.builder()
                    .maximumCount(12)
                    .minimumCount(3)
                    .workloadProfileType("GeneralPurpose")
                    .build(),
                WorkloadProfileArgs.builder()
                    .maximumCount(6)
                    .minimumCount(3)
                    .workloadProfileType("MemoryOptimized")
                    .build(),
                WorkloadProfileArgs.builder()
                    .maximumCount(6)
                    .minimumCount(3)
                    .workloadProfileType("ComputeOptimized")
                    .build())
            .zoneRedundant(true)
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const managedEnvironment = new azure_native.app.ManagedEnvironment("managedEnvironment", {
    appLogsConfiguration: {
        logAnalyticsConfiguration: {
            customerId: "string",
            sharedKey: "string",
        },
    },
    customDomainConfiguration: {
        certificatePassword: "private key password",
        certificateValue: "Y2VydA==",
        dnsSuffix: "www.my-name.com",
    },
    daprAIConnectionString: "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
    environmentName: "testcontainerenv",
    kind: "serverless",
    location: "East US",
    resourceGroupName: "examplerg",
    sku: {
        name: azure_native.app.SkuName.Premium,
    },
    vnetConfiguration: {
        outboundSettings: {
            outBoundType: azure_native.app.ManagedEnvironmentOutBoundType.UserDefinedRouting,
            virtualNetworkApplianceIp: "192.168.1.20",
        },
    },
    workloadProfiles: [
        {
            maximumCount: 12,
            minimumCount: 3,
            workloadProfileType: "GeneralPurpose",
        },
        {
            maximumCount: 6,
            minimumCount: 3,
            workloadProfileType: "MemoryOptimized",
        },
        {
            maximumCount: 6,
            minimumCount: 3,
            workloadProfileType: "ComputeOptimized",
        },
    ],
    zoneRedundant: true,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

managed_environment = azure_native.app.ManagedEnvironment("managedEnvironment",
    app_logs_configuration={
        "log_analytics_configuration": {
            "customer_id": "string",
            "shared_key": "string",
        },
    },
    custom_domain_configuration={
        "certificate_password": "private key password",
        "certificate_value": "Y2VydA==",
        "dns_suffix": "www.my-name.com",
    },
    dapr_ai_connection_string="InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
    environment_name="testcontainerenv",
    kind="serverless",
    location="East US",
    resource_group_name="examplerg",
    sku={
        "name": azure_native.app.SkuName.PREMIUM,
    },
    vnet_configuration={
        "outbound_settings": {
            "out_bound_type": azure_native.app.ManagedEnvironmentOutBoundType.USER_DEFINED_ROUTING,
            "virtual_network_appliance_ip": "192.168.1.20",
        },
    },
    workload_profiles=[
        {
            "maximum_count": 12,
            "minimum_count": 3,
            "workload_profile_type": "GeneralPurpose",
        },
        {
            "maximum_count": 6,
            "minimum_count": 3,
            "workload_profile_type": "MemoryOptimized",
        },
        {
            "maximum_count": 6,
            "minimum_count": 3,
            "workload_profile_type": "ComputeOptimized",
        },
    ],
    zone_redundant=True)
Copy
resources:
  managedEnvironment:
    type: azure-native:app:ManagedEnvironment
    properties:
      appLogsConfiguration:
        logAnalyticsConfiguration:
          customerId: string
          sharedKey: string
      customDomainConfiguration:
        certificatePassword: private key password
        certificateValue: Y2VydA==
        dnsSuffix: www.my-name.com
      daprAIConnectionString: InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/
      environmentName: testcontainerenv
      kind: serverless
      location: East US
      resourceGroupName: examplerg
      sku:
        name: Premium
      vnetConfiguration:
        outboundSettings:
          outBoundType: UserDefinedRouting
          virtualNetworkApplianceIp: 192.168.1.20
      workloadProfiles:
        - maximumCount: 12
          minimumCount: 3
          workloadProfileType: GeneralPurpose
        - maximumCount: 6
          minimumCount: 3
          workloadProfileType: MemoryOptimized
        - maximumCount: 6
          minimumCount: 3
          workloadProfileType: ComputeOptimized
      zoneRedundant: true
Copy

Create ManagedEnvironment Resource

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

Constructor syntax

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

@overload
def ManagedEnvironment(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       resource_group_name: Optional[str] = None,
                       location: Optional[str] = None,
                       dapr_ai_connection_string: Optional[str] = None,
                       dapr_ai_instrumentation_key: Optional[str] = None,
                       environment_name: Optional[str] = None,
                       kind: Optional[str] = None,
                       app_logs_configuration: Optional[AppLogsConfigurationArgs] = None,
                       custom_domain_configuration: Optional[CustomDomainConfigurationArgs] = None,
                       sku: Optional[EnvironmentSkuPropertiesArgs] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       vnet_configuration: Optional[VnetConfigurationArgs] = None,
                       workload_profiles: Optional[Sequence[WorkloadProfileArgs]] = None,
                       zone_redundant: Optional[bool] = None)
func NewManagedEnvironment(ctx *Context, name string, args ManagedEnvironmentArgs, opts ...ResourceOption) (*ManagedEnvironment, error)
public ManagedEnvironment(string name, ManagedEnvironmentArgs args, CustomResourceOptions? opts = null)
public ManagedEnvironment(String name, ManagedEnvironmentArgs args)
public ManagedEnvironment(String name, ManagedEnvironmentArgs args, CustomResourceOptions options)
type: azure-native:app:ManagedEnvironment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManagedEnvironmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManagedEnvironmentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManagedEnvironmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManagedEnvironmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagedEnvironmentArgs
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 managedEnvironmentResource = new AzureNative.App.ManagedEnvironment("managedEnvironmentResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    DaprAIConnectionString = "string",
    DaprAIInstrumentationKey = "string",
    EnvironmentName = "string",
    Kind = "string",
    AppLogsConfiguration = 
    {
        { "destination", "string" },
        { "logAnalyticsConfiguration", 
        {
            { "customerId", "string" },
            { "sharedKey", "string" },
        } },
    },
    CustomDomainConfiguration = 
    {
        { "certificatePassword", "string" },
        { "certificateValue", "string" },
        { "dnsSuffix", "string" },
    },
    Sku = 
    {
        { "name", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
    VnetConfiguration = 
    {
        { "dockerBridgeCidr", "string" },
        { "infrastructureSubnetId", "string" },
        { "internal", false },
        { "outboundSettings", 
        {
            { "outBoundType", "string" },
            { "virtualNetworkApplianceIp", "string" },
        } },
        { "platformReservedCidr", "string" },
        { "platformReservedDnsIP", "string" },
        { "runtimeSubnetId", "string" },
    },
    WorkloadProfiles = new[]
    {
        
        {
            { "maximumCount", 0 },
            { "minimumCount", 0 },
            { "workloadProfileType", "string" },
        },
    },
    ZoneRedundant = false,
});
Copy
example, err := app.NewManagedEnvironment(ctx, "managedEnvironmentResource", &app.ManagedEnvironmentArgs{
	ResourceGroupName:        "string",
	Location:                 "string",
	DaprAIConnectionString:   "string",
	DaprAIInstrumentationKey: "string",
	EnvironmentName:          "string",
	Kind:                     "string",
	AppLogsConfiguration: map[string]interface{}{
		"destination": "string",
		"logAnalyticsConfiguration": map[string]interface{}{
			"customerId": "string",
			"sharedKey":  "string",
		},
	},
	CustomDomainConfiguration: map[string]interface{}{
		"certificatePassword": "string",
		"certificateValue":    "string",
		"dnsSuffix":           "string",
	},
	Sku: map[string]interface{}{
		"name": "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
	VnetConfiguration: map[string]interface{}{
		"dockerBridgeCidr":       "string",
		"infrastructureSubnetId": "string",
		"internal":               false,
		"outboundSettings": map[string]interface{}{
			"outBoundType":              "string",
			"virtualNetworkApplianceIp": "string",
		},
		"platformReservedCidr":  "string",
		"platformReservedDnsIP": "string",
		"runtimeSubnetId":       "string",
	},
	WorkloadProfiles: []map[string]interface{}{
		map[string]interface{}{
			"maximumCount":        0,
			"minimumCount":        0,
			"workloadProfileType": "string",
		},
	},
	ZoneRedundant: false,
})
Copy
var managedEnvironmentResource = new ManagedEnvironment("managedEnvironmentResource", ManagedEnvironmentArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .daprAIConnectionString("string")
    .daprAIInstrumentationKey("string")
    .environmentName("string")
    .kind("string")
    .appLogsConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .customDomainConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .vnetConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .workloadProfiles(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .zoneRedundant(false)
    .build());
Copy
managed_environment_resource = azure_native.app.ManagedEnvironment("managedEnvironmentResource",
    resource_group_name=string,
    location=string,
    dapr_ai_connection_string=string,
    dapr_ai_instrumentation_key=string,
    environment_name=string,
    kind=string,
    app_logs_configuration={
        destination: string,
        logAnalyticsConfiguration: {
            customerId: string,
            sharedKey: string,
        },
    },
    custom_domain_configuration={
        certificatePassword: string,
        certificateValue: string,
        dnsSuffix: string,
    },
    sku={
        name: string,
    },
    tags={
        string: string,
    },
    vnet_configuration={
        dockerBridgeCidr: string,
        infrastructureSubnetId: string,
        internal: False,
        outboundSettings: {
            outBoundType: string,
            virtualNetworkApplianceIp: string,
        },
        platformReservedCidr: string,
        platformReservedDnsIP: string,
        runtimeSubnetId: string,
    },
    workload_profiles=[{
        maximumCount: 0,
        minimumCount: 0,
        workloadProfileType: string,
    }],
    zone_redundant=False)
Copy
const managedEnvironmentResource = new azure_native.app.ManagedEnvironment("managedEnvironmentResource", {
    resourceGroupName: "string",
    location: "string",
    daprAIConnectionString: "string",
    daprAIInstrumentationKey: "string",
    environmentName: "string",
    kind: "string",
    appLogsConfiguration: {
        destination: "string",
        logAnalyticsConfiguration: {
            customerId: "string",
            sharedKey: "string",
        },
    },
    customDomainConfiguration: {
        certificatePassword: "string",
        certificateValue: "string",
        dnsSuffix: "string",
    },
    sku: {
        name: "string",
    },
    tags: {
        string: "string",
    },
    vnetConfiguration: {
        dockerBridgeCidr: "string",
        infrastructureSubnetId: "string",
        internal: false,
        outboundSettings: {
            outBoundType: "string",
            virtualNetworkApplianceIp: "string",
        },
        platformReservedCidr: "string",
        platformReservedDnsIP: "string",
        runtimeSubnetId: "string",
    },
    workloadProfiles: [{
        maximumCount: 0,
        minimumCount: 0,
        workloadProfileType: "string",
    }],
    zoneRedundant: false,
});
Copy
type: azure-native:app:ManagedEnvironment
properties:
    appLogsConfiguration:
        destination: string
        logAnalyticsConfiguration:
            customerId: string
            sharedKey: string
    customDomainConfiguration:
        certificatePassword: string
        certificateValue: string
        dnsSuffix: string
    daprAIConnectionString: string
    daprAIInstrumentationKey: string
    environmentName: string
    kind: string
    location: string
    resourceGroupName: string
    sku:
        name: string
    tags:
        string: string
    vnetConfiguration:
        dockerBridgeCidr: string
        infrastructureSubnetId: string
        internal: false
        outboundSettings:
            outBoundType: string
            virtualNetworkApplianceIp: string
        platformReservedCidr: string
        platformReservedDnsIP: string
        runtimeSubnetId: string
    workloadProfiles:
        - maximumCount: 0
          minimumCount: 0
          workloadProfileType: string
    zoneRedundant: false
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AppLogsConfiguration Pulumi.AzureNative.App.Inputs.AppLogsConfiguration
Cluster configuration which enables the log daemon to export app logs to configured destination.
CustomDomainConfiguration Pulumi.AzureNative.App.Inputs.CustomDomainConfiguration
Custom domain configuration for the environment
DaprAIConnectionString string
Application Insights connection string used by Dapr to export Service to Service communication telemetry
DaprAIInstrumentationKey string
Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
EnvironmentName Changes to this property will trigger replacement. string
Name of the Environment.
Kind string
Kind of the Environment.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Sku Pulumi.AzureNative.App.Inputs.EnvironmentSkuProperties
SKU properties of the Environment.
Tags Dictionary<string, string>
Resource tags.
VnetConfiguration Pulumi.AzureNative.App.Inputs.VnetConfiguration
Vnet configuration for the environment
WorkloadProfiles List<Pulumi.AzureNative.App.Inputs.WorkloadProfile>
Workload profiles configured for the Managed Environment.
ZoneRedundant Changes to this property will trigger replacement. bool
Whether or not this Managed Environment is zone-redundant.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AppLogsConfiguration AppLogsConfigurationArgs
Cluster configuration which enables the log daemon to export app logs to configured destination.
CustomDomainConfiguration CustomDomainConfigurationArgs
Custom domain configuration for the environment
DaprAIConnectionString string
Application Insights connection string used by Dapr to export Service to Service communication telemetry
DaprAIInstrumentationKey string
Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
EnvironmentName Changes to this property will trigger replacement. string
Name of the Environment.
Kind string
Kind of the Environment.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Sku EnvironmentSkuPropertiesArgs
SKU properties of the Environment.
Tags map[string]string
Resource tags.
VnetConfiguration VnetConfigurationArgs
Vnet configuration for the environment
WorkloadProfiles []WorkloadProfileArgs
Workload profiles configured for the Managed Environment.
ZoneRedundant Changes to this property will trigger replacement. bool
Whether or not this Managed Environment is zone-redundant.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
appLogsConfiguration AppLogsConfiguration
Cluster configuration which enables the log daemon to export app logs to configured destination.
customDomainConfiguration CustomDomainConfiguration
Custom domain configuration for the environment
daprAIConnectionString String
Application Insights connection string used by Dapr to export Service to Service communication telemetry
daprAIInstrumentationKey String
Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
environmentName Changes to this property will trigger replacement. String
Name of the Environment.
kind String
Kind of the Environment.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
sku EnvironmentSkuProperties
SKU properties of the Environment.
tags Map<String,String>
Resource tags.
vnetConfiguration VnetConfiguration
Vnet configuration for the environment
workloadProfiles List<WorkloadProfile>
Workload profiles configured for the Managed Environment.
zoneRedundant Changes to this property will trigger replacement. Boolean
Whether or not this Managed Environment is zone-redundant.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
appLogsConfiguration AppLogsConfiguration
Cluster configuration which enables the log daemon to export app logs to configured destination.
customDomainConfiguration CustomDomainConfiguration
Custom domain configuration for the environment
daprAIConnectionString string
Application Insights connection string used by Dapr to export Service to Service communication telemetry
daprAIInstrumentationKey string
Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
environmentName Changes to this property will trigger replacement. string
Name of the Environment.
kind string
Kind of the Environment.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
sku EnvironmentSkuProperties
SKU properties of the Environment.
tags {[key: string]: string}
Resource tags.
vnetConfiguration VnetConfiguration
Vnet configuration for the environment
workloadProfiles WorkloadProfile[]
Workload profiles configured for the Managed Environment.
zoneRedundant Changes to this property will trigger replacement. boolean
Whether or not this Managed Environment is zone-redundant.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
app_logs_configuration AppLogsConfigurationArgs
Cluster configuration which enables the log daemon to export app logs to configured destination.
custom_domain_configuration CustomDomainConfigurationArgs
Custom domain configuration for the environment
dapr_ai_connection_string str
Application Insights connection string used by Dapr to export Service to Service communication telemetry
dapr_ai_instrumentation_key str
Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
environment_name Changes to this property will trigger replacement. str
Name of the Environment.
kind str
Kind of the Environment.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
sku EnvironmentSkuPropertiesArgs
SKU properties of the Environment.
tags Mapping[str, str]
Resource tags.
vnet_configuration VnetConfigurationArgs
Vnet configuration for the environment
workload_profiles Sequence[WorkloadProfileArgs]
Workload profiles configured for the Managed Environment.
zone_redundant Changes to this property will trigger replacement. bool
Whether or not this Managed Environment is zone-redundant.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
appLogsConfiguration Property Map
Cluster configuration which enables the log daemon to export app logs to configured destination.
customDomainConfiguration Property Map
Custom domain configuration for the environment
daprAIConnectionString String
Application Insights connection string used by Dapr to export Service to Service communication telemetry
daprAIInstrumentationKey String
Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry
environmentName Changes to this property will trigger replacement. String
Name of the Environment.
kind String
Kind of the Environment.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
sku Property Map
SKU properties of the Environment.
tags Map<String>
Resource tags.
vnetConfiguration Property Map
Vnet configuration for the environment
workloadProfiles List<Property Map>
Workload profiles configured for the Managed Environment.
zoneRedundant Changes to this property will trigger replacement. Boolean
Whether or not this Managed Environment is zone-redundant.

Outputs

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

DefaultDomain string
Default Domain Name for the cluster
DeploymentErrors string
Any errors that occurred during deployment or deployment validation
EventStreamEndpoint string
The endpoint of the eventstream of the Environment.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Provisioning state of the Environment.
StaticIp string
Static IP of the Environment
SystemData Pulumi.AzureNative.App.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
DefaultDomain string
Default Domain Name for the cluster
DeploymentErrors string
Any errors that occurred during deployment or deployment validation
EventStreamEndpoint string
The endpoint of the eventstream of the Environment.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Provisioning state of the Environment.
StaticIp string
Static IP of the Environment
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
defaultDomain String
Default Domain Name for the cluster
deploymentErrors String
Any errors that occurred during deployment or deployment validation
eventStreamEndpoint String
The endpoint of the eventstream of the Environment.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Provisioning state of the Environment.
staticIp String
Static IP of the Environment
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
defaultDomain string
Default Domain Name for the cluster
deploymentErrors string
Any errors that occurred during deployment or deployment validation
eventStreamEndpoint string
The endpoint of the eventstream of the Environment.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
Provisioning state of the Environment.
staticIp string
Static IP of the Environment
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
default_domain str
Default Domain Name for the cluster
deployment_errors str
Any errors that occurred during deployment or deployment validation
event_stream_endpoint str
The endpoint of the eventstream of the Environment.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
Provisioning state of the Environment.
static_ip str
Static IP of the Environment
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
defaultDomain String
Default Domain Name for the cluster
deploymentErrors String
Any errors that occurred during deployment or deployment validation
eventStreamEndpoint String
The endpoint of the eventstream of the Environment.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Provisioning state of the Environment.
staticIp String
Static IP of the Environment
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AppLogsConfiguration
, AppLogsConfigurationArgs

Destination string
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
LogAnalyticsConfiguration Pulumi.AzureNative.App.Inputs.LogAnalyticsConfiguration
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
Destination string
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
LogAnalyticsConfiguration LogAnalyticsConfiguration
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination String
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
logAnalyticsConfiguration LogAnalyticsConfiguration
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination string
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
logAnalyticsConfiguration LogAnalyticsConfiguration
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination str
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
log_analytics_configuration LogAnalyticsConfiguration
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination String
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
logAnalyticsConfiguration Property Map
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'

AppLogsConfigurationResponse
, AppLogsConfigurationResponseArgs

Destination string
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
LogAnalyticsConfiguration Pulumi.AzureNative.App.Inputs.LogAnalyticsConfigurationResponse
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
Destination string
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
LogAnalyticsConfiguration LogAnalyticsConfigurationResponse
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination String
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
logAnalyticsConfiguration LogAnalyticsConfigurationResponse
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination string
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
logAnalyticsConfiguration LogAnalyticsConfigurationResponse
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination str
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
log_analytics_configuration LogAnalyticsConfigurationResponse
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'
destination String
Logs destination, can be 'log-analytics', 'azure-monitor' or 'none'
logAnalyticsConfiguration Property Map
Log Analytics configuration, must only be provided when destination is configured as 'log-analytics'

CustomDomainConfiguration
, CustomDomainConfigurationArgs

CertificatePassword string
Certificate password
CertificateValue string
PFX or PEM blob
DnsSuffix string
Dns suffix for the environment domain
CertificatePassword string
Certificate password
CertificateValue string
PFX or PEM blob
DnsSuffix string
Dns suffix for the environment domain
certificatePassword String
Certificate password
certificateValue String
PFX or PEM blob
dnsSuffix String
Dns suffix for the environment domain
certificatePassword string
Certificate password
certificateValue string
PFX or PEM blob
dnsSuffix string
Dns suffix for the environment domain
certificate_password str
Certificate password
certificate_value str
PFX or PEM blob
dns_suffix str
Dns suffix for the environment domain
certificatePassword String
Certificate password
certificateValue String
PFX or PEM blob
dnsSuffix String
Dns suffix for the environment domain

CustomDomainConfigurationResponse
, CustomDomainConfigurationResponseArgs

CustomDomainVerificationId This property is required. string
Id used to verify domain name ownership
ExpirationDate This property is required. string
Certificate expiration date.
SubjectName This property is required. string
Subject name of the certificate.
Thumbprint This property is required. string
Certificate thumbprint.
CertificatePassword string
Certificate password
CertificateValue string
PFX or PEM blob
DnsSuffix string
Dns suffix for the environment domain
CustomDomainVerificationId This property is required. string
Id used to verify domain name ownership
ExpirationDate This property is required. string
Certificate expiration date.
SubjectName This property is required. string
Subject name of the certificate.
Thumbprint This property is required. string
Certificate thumbprint.
CertificatePassword string
Certificate password
CertificateValue string
PFX or PEM blob
DnsSuffix string
Dns suffix for the environment domain
customDomainVerificationId This property is required. String
Id used to verify domain name ownership
expirationDate This property is required. String
Certificate expiration date.
subjectName This property is required. String
Subject name of the certificate.
thumbprint This property is required. String
Certificate thumbprint.
certificatePassword String
Certificate password
certificateValue String
PFX or PEM blob
dnsSuffix String
Dns suffix for the environment domain
customDomainVerificationId This property is required. string
Id used to verify domain name ownership
expirationDate This property is required. string
Certificate expiration date.
subjectName This property is required. string
Subject name of the certificate.
thumbprint This property is required. string
Certificate thumbprint.
certificatePassword string
Certificate password
certificateValue string
PFX or PEM blob
dnsSuffix string
Dns suffix for the environment domain
custom_domain_verification_id This property is required. str
Id used to verify domain name ownership
expiration_date This property is required. str
Certificate expiration date.
subject_name This property is required. str
Subject name of the certificate.
thumbprint This property is required. str
Certificate thumbprint.
certificate_password str
Certificate password
certificate_value str
PFX or PEM blob
dns_suffix str
Dns suffix for the environment domain
customDomainVerificationId This property is required. String
Id used to verify domain name ownership
expirationDate This property is required. String
Certificate expiration date.
subjectName This property is required. String
Subject name of the certificate.
thumbprint This property is required. String
Certificate thumbprint.
certificatePassword String
Certificate password
certificateValue String
PFX or PEM blob
dnsSuffix String
Dns suffix for the environment domain

EnvironmentSkuProperties
, EnvironmentSkuPropertiesArgs

Name This property is required. string | Pulumi.AzureNative.App.SkuName
Name of the Sku.
Name This property is required. string | SkuName
Name of the Sku.
name This property is required. String | SkuName
Name of the Sku.
name This property is required. string | SkuName
Name of the Sku.
name This property is required. str | SkuName
Name of the Sku.
name This property is required. String | "Consumption" | "Premium"
Name of the Sku.

EnvironmentSkuPropertiesResponse
, EnvironmentSkuPropertiesResponseArgs

Name This property is required. string
Name of the Sku.
Name This property is required. string
Name of the Sku.
name This property is required. String
Name of the Sku.
name This property is required. string
Name of the Sku.
name This property is required. str
Name of the Sku.
name This property is required. String
Name of the Sku.

LogAnalyticsConfiguration
, LogAnalyticsConfigurationArgs

CustomerId string
Log analytics customer id
SharedKey string
Log analytics customer key
CustomerId string
Log analytics customer id
SharedKey string
Log analytics customer key
customerId String
Log analytics customer id
sharedKey String
Log analytics customer key
customerId string
Log analytics customer id
sharedKey string
Log analytics customer key
customer_id str
Log analytics customer id
shared_key str
Log analytics customer key
customerId String
Log analytics customer id
sharedKey String
Log analytics customer key

LogAnalyticsConfigurationResponse
, LogAnalyticsConfigurationResponseArgs

CustomerId string
Log analytics customer id
CustomerId string
Log analytics customer id
customerId String
Log analytics customer id
customerId string
Log analytics customer id
customer_id str
Log analytics customer id
customerId String
Log analytics customer id

ManagedEnvironmentOutBoundType
, ManagedEnvironmentOutBoundTypeArgs

LoadBalancer
LoadBalancer
UserDefinedRouting
UserDefinedRouting
ManagedEnvironmentOutBoundTypeLoadBalancer
LoadBalancer
ManagedEnvironmentOutBoundTypeUserDefinedRouting
UserDefinedRouting
LoadBalancer
LoadBalancer
UserDefinedRouting
UserDefinedRouting
LoadBalancer
LoadBalancer
UserDefinedRouting
UserDefinedRouting
LOAD_BALANCER
LoadBalancer
USER_DEFINED_ROUTING
UserDefinedRouting
"LoadBalancer"
LoadBalancer
"UserDefinedRouting"
UserDefinedRouting

ManagedEnvironmentOutboundSettings
, ManagedEnvironmentOutboundSettingsArgs

OutBoundType string | Pulumi.AzureNative.App.ManagedEnvironmentOutBoundType
Outbound type for the cluster
VirtualNetworkApplianceIp string
Virtual Appliance IP used as the Egress controller for the Environment
OutBoundType string | ManagedEnvironmentOutBoundType
Outbound type for the cluster
VirtualNetworkApplianceIp string
Virtual Appliance IP used as the Egress controller for the Environment
outBoundType String | ManagedEnvironmentOutBoundType
Outbound type for the cluster
virtualNetworkApplianceIp String
Virtual Appliance IP used as the Egress controller for the Environment
outBoundType string | ManagedEnvironmentOutBoundType
Outbound type for the cluster
virtualNetworkApplianceIp string
Virtual Appliance IP used as the Egress controller for the Environment
out_bound_type str | ManagedEnvironmentOutBoundType
Outbound type for the cluster
virtual_network_appliance_ip str
Virtual Appliance IP used as the Egress controller for the Environment
outBoundType String | "LoadBalancer" | "UserDefinedRouting"
Outbound type for the cluster
virtualNetworkApplianceIp String
Virtual Appliance IP used as the Egress controller for the Environment

ManagedEnvironmentOutboundSettingsResponse
, ManagedEnvironmentOutboundSettingsResponseArgs

OutBoundType string
Outbound type for the cluster
VirtualNetworkApplianceIp string
Virtual Appliance IP used as the Egress controller for the Environment
OutBoundType string
Outbound type for the cluster
VirtualNetworkApplianceIp string
Virtual Appliance IP used as the Egress controller for the Environment
outBoundType String
Outbound type for the cluster
virtualNetworkApplianceIp String
Virtual Appliance IP used as the Egress controller for the Environment
outBoundType string
Outbound type for the cluster
virtualNetworkApplianceIp string
Virtual Appliance IP used as the Egress controller for the Environment
out_bound_type str
Outbound type for the cluster
virtual_network_appliance_ip str
Virtual Appliance IP used as the Egress controller for the Environment
outBoundType String
Outbound type for the cluster
virtualNetworkApplianceIp String
Virtual Appliance IP used as the Egress controller for the Environment

SkuName
, SkuNameArgs

Consumption
ConsumptionConsumption SKU of Managed Environment.
Premium
PremiumPremium SKU of Managed Environment.
SkuNameConsumption
ConsumptionConsumption SKU of Managed Environment.
SkuNamePremium
PremiumPremium SKU of Managed Environment.
Consumption
ConsumptionConsumption SKU of Managed Environment.
Premium
PremiumPremium SKU of Managed Environment.
Consumption
ConsumptionConsumption SKU of Managed Environment.
Premium
PremiumPremium SKU of Managed Environment.
CONSUMPTION
ConsumptionConsumption SKU of Managed Environment.
PREMIUM
PremiumPremium SKU of Managed Environment.
"Consumption"
ConsumptionConsumption SKU of Managed Environment.
"Premium"
PremiumPremium SKU of Managed Environment.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

VnetConfiguration
, VnetConfigurationArgs

DockerBridgeCidr string
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
InfrastructureSubnetId string
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
Internal bool
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
OutboundSettings Pulumi.AzureNative.App.Inputs.ManagedEnvironmentOutboundSettings
Configuration used to control the Environment Egress outbound traffic
PlatformReservedCidr string
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
PlatformReservedDnsIP string
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
RuntimeSubnetId string
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
DockerBridgeCidr string
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
InfrastructureSubnetId string
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
Internal bool
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
OutboundSettings ManagedEnvironmentOutboundSettings
Configuration used to control the Environment Egress outbound traffic
PlatformReservedCidr string
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
PlatformReservedDnsIP string
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
RuntimeSubnetId string
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
dockerBridgeCidr String
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructureSubnetId String
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal Boolean
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outboundSettings ManagedEnvironmentOutboundSettings
Configuration used to control the Environment Egress outbound traffic
platformReservedCidr String
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platformReservedDnsIP String
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtimeSubnetId String
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
dockerBridgeCidr string
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructureSubnetId string
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal boolean
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outboundSettings ManagedEnvironmentOutboundSettings
Configuration used to control the Environment Egress outbound traffic
platformReservedCidr string
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platformReservedDnsIP string
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtimeSubnetId string
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
docker_bridge_cidr str
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructure_subnet_id str
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal bool
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outbound_settings ManagedEnvironmentOutboundSettings
Configuration used to control the Environment Egress outbound traffic
platform_reserved_cidr str
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platform_reserved_dns_ip str
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtime_subnet_id str
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
dockerBridgeCidr String
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructureSubnetId String
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal Boolean
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outboundSettings Property Map
Configuration used to control the Environment Egress outbound traffic
platformReservedCidr String
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platformReservedDnsIP String
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtimeSubnetId String
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.

VnetConfigurationResponse
, VnetConfigurationResponseArgs

DockerBridgeCidr string
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
InfrastructureSubnetId string
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
Internal bool
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
OutboundSettings Pulumi.AzureNative.App.Inputs.ManagedEnvironmentOutboundSettingsResponse
Configuration used to control the Environment Egress outbound traffic
PlatformReservedCidr string
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
PlatformReservedDnsIP string
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
RuntimeSubnetId string
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
DockerBridgeCidr string
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
InfrastructureSubnetId string
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
Internal bool
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
OutboundSettings ManagedEnvironmentOutboundSettingsResponse
Configuration used to control the Environment Egress outbound traffic
PlatformReservedCidr string
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
PlatformReservedDnsIP string
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
RuntimeSubnetId string
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
dockerBridgeCidr String
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructureSubnetId String
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal Boolean
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outboundSettings ManagedEnvironmentOutboundSettingsResponse
Configuration used to control the Environment Egress outbound traffic
platformReservedCidr String
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platformReservedDnsIP String
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtimeSubnetId String
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
dockerBridgeCidr string
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructureSubnetId string
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal boolean
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outboundSettings ManagedEnvironmentOutboundSettingsResponse
Configuration used to control the Environment Egress outbound traffic
platformReservedCidr string
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platformReservedDnsIP string
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtimeSubnetId string
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
docker_bridge_cidr str
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructure_subnet_id str
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal bool
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outbound_settings ManagedEnvironmentOutboundSettingsResponse
Configuration used to control the Environment Egress outbound traffic
platform_reserved_cidr str
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platform_reserved_dns_ip str
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtime_subnet_id str
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.
dockerBridgeCidr String
CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges.
infrastructureSubnetId String
Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges.
internal Boolean
Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property
outboundSettings Property Map
Configuration used to control the Environment Egress outbound traffic
platformReservedCidr String
IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges.
platformReservedDnsIP String
An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server.
runtimeSubnetId String
This field is deprecated and not used. If you wish to provide your own subnet that Container App containers are injected into, then you should leverage the infrastructureSubnetId.

WorkloadProfile
, WorkloadProfileArgs

MaximumCount This property is required. int
The maximum capacity.
MinimumCount This property is required. int
The minimum capacity.
WorkloadProfileType This property is required. string
Workload profile type for the workloads to run on.
MaximumCount This property is required. int
The maximum capacity.
MinimumCount This property is required. int
The minimum capacity.
WorkloadProfileType This property is required. string
Workload profile type for the workloads to run on.
maximumCount This property is required. Integer
The maximum capacity.
minimumCount This property is required. Integer
The minimum capacity.
workloadProfileType This property is required. String
Workload profile type for the workloads to run on.
maximumCount This property is required. number
The maximum capacity.
minimumCount This property is required. number
The minimum capacity.
workloadProfileType This property is required. string
Workload profile type for the workloads to run on.
maximum_count This property is required. int
The maximum capacity.
minimum_count This property is required. int
The minimum capacity.
workload_profile_type This property is required. str
Workload profile type for the workloads to run on.
maximumCount This property is required. Number
The maximum capacity.
minimumCount This property is required. Number
The minimum capacity.
workloadProfileType This property is required. String
Workload profile type for the workloads to run on.

WorkloadProfileResponse
, WorkloadProfileResponseArgs

MaximumCount This property is required. int
The maximum capacity.
MinimumCount This property is required. int
The minimum capacity.
WorkloadProfileType This property is required. string
Workload profile type for the workloads to run on.
MaximumCount This property is required. int
The maximum capacity.
MinimumCount This property is required. int
The minimum capacity.
WorkloadProfileType This property is required. string
Workload profile type for the workloads to run on.
maximumCount This property is required. Integer
The maximum capacity.
minimumCount This property is required. Integer
The minimum capacity.
workloadProfileType This property is required. String
Workload profile type for the workloads to run on.
maximumCount This property is required. number
The maximum capacity.
minimumCount This property is required. number
The minimum capacity.
workloadProfileType This property is required. string
Workload profile type for the workloads to run on.
maximum_count This property is required. int
The maximum capacity.
minimum_count This property is required. int
The minimum capacity.
workload_profile_type This property is required. str
Workload profile type for the workloads to run on.
maximumCount This property is required. Number
The maximum capacity.
minimumCount This property is required. Number
The minimum capacity.
workloadProfileType This property is required. String
Workload profile type for the workloads to run on.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:app:ManagedEnvironment testcontainerenv /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi