EnvironmentV3Args

data class EnvironmentV3Args(val allowNewPrivateEndpointConnections: Output<Boolean>? = null, val clusterSettings: Output<List<EnvironmentV3ClusterSettingArgs>>? = null, val dedicatedHostCount: Output<Int>? = null, val internalLoadBalancingMode: Output<String>? = null, val name: Output<String>? = null, val resourceGroupName: Output<String>? = null, val subnetId: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val zoneRedundant: Output<Boolean>? = null) : ConvertibleToJava<EnvironmentV3Args>

Import

A 3rd Generation (v3) App Service Environment can be imported using the resource id, e.g.

$ pulumi import azure:appservice/environmentV3:EnvironmentV3 myAppServiceEnv /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Web/hostingEnvironments/myAppServiceEnv

Constructors

Link copied to clipboard
fun EnvironmentV3Args(allowNewPrivateEndpointConnections: Output<Boolean>? = null, clusterSettings: Output<List<EnvironmentV3ClusterSettingArgs>>? = null, dedicatedHostCount: Output<Int>? = null, internalLoadBalancingMode: Output<String>? = null, name: Output<String>? = null, resourceGroupName: Output<String>? = null, subnetId: Output<String>? = null, tags: Output<Map<String, String>>? = null, zoneRedundant: Output<Boolean>? = null)

Functions

Link copied to clipboard
open override fun toJava(): EnvironmentV3Args

Properties

Link copied to clipboard

Should new Private Endpoint Connections be allowed. Defaults to true.

Link copied to clipboard

Zero or more cluster_setting blocks as defined below.

Link copied to clipboard
val dedicatedHostCount: Output<Int>? = null

This ASEv3 should use dedicated Hosts. Possible values are 2. Changing this forces a new resource to be created.

Link copied to clipboard
val internalLoadBalancingMode: Output<String>? = null

Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment. Possible values are None (for an External VIP Type), and "Web, Publishing" (for an Internal VIP Type). Defaults to None. Changing this forces a new resource to be created.

Link copied to clipboard
val name: Output<String>? = null

The name of the App Service Environment. Changing this forces a new resource to be created.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the Resource Group where the App Service Environment exists. Defaults to the Resource Group of the Subnet (specified by subnet_id). Changing this forces a new resource to be created.

Link copied to clipboard
val subnetId: Output<String>? = null

The ID of the Subnet which the App Service Environment should be connected to. Changing this forces a new resource to be created.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null
Link copied to clipboard
val zoneRedundant: Output<Boolean>? = null

Set to true to deploy the ASEv3 with availability zones supported. Zonal ASEs can be deployed in some regions, you can refer to Availability Zone support for App Service Environments. You can only set either dedicated_host_count or zone_redundant but not both. Changing this forces a new resource to be created.