azure-native.web.AppServiceEnvironment
Explore with Pulumi AI
App Service Environment ARM resource. Azure REST API version: 2022-09-01. Prior API version in Azure Native 1.x: 2020-12-01.
Other available API versions: 2019-08-01, 2020-10-01, 2021-01-15, 2023-01-01, 2023-12-01.
Example Usage
Create or update an App Service Environment.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var appServiceEnvironment = new AzureNative.Web.AppServiceEnvironment("appServiceEnvironment", new()
{
Kind = "Asev3",
Location = "South Central US",
Name = "test-ase",
ResourceGroupName = "test-rg",
VirtualNetwork = new AzureNative.Web.Inputs.VirtualNetworkProfileArgs
{
Id = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated",
},
});
});
package main
import (
web "github.com/pulumi/pulumi-azure-native-sdk/web/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := web.NewAppServiceEnvironment(ctx, "appServiceEnvironment", &web.AppServiceEnvironmentArgs{
Kind: pulumi.String("Asev3"),
Location: pulumi.String("South Central US"),
Name: pulumi.String("test-ase"),
ResourceGroupName: pulumi.String("test-rg"),
VirtualNetwork: &web.VirtualNetworkProfileArgs{
Id: pulumi.String("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.web.AppServiceEnvironment;
import com.pulumi.azurenative.web.AppServiceEnvironmentArgs;
import com.pulumi.azurenative.web.inputs.VirtualNetworkProfileArgs;
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 appServiceEnvironment = new AppServiceEnvironment("appServiceEnvironment", AppServiceEnvironmentArgs.builder()
.kind("Asev3")
.location("South Central US")
.name("test-ase")
.resourceGroupName("test-rg")
.virtualNetwork(VirtualNetworkProfileArgs.builder()
.id("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
app_service_environment = azure_native.web.AppServiceEnvironment("appServiceEnvironment",
kind="Asev3",
location="South Central US",
name="test-ase",
resource_group_name="test-rg",
virtual_network={
"id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const appServiceEnvironment = new azure_native.web.AppServiceEnvironment("appServiceEnvironment", {
kind: "Asev3",
location: "South Central US",
name: "test-ase",
resourceGroupName: "test-rg",
virtualNetwork: {
id: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated",
},
});
resources:
appServiceEnvironment:
type: azure-native:web:AppServiceEnvironment
properties:
kind: Asev3
location: South Central US
name: test-ase
resourceGroupName: test-rg
virtualNetwork:
id: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated
Create AppServiceEnvironment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppServiceEnvironment(name: string, args: AppServiceEnvironmentArgs, opts?: CustomResourceOptions);
@overload
def AppServiceEnvironment(resource_name: str,
args: AppServiceEnvironmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppServiceEnvironment(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
virtual_network: Optional[VirtualNetworkProfileArgs] = None,
front_end_scale_factor: Optional[int] = None,
multi_size: Optional[str] = None,
cluster_settings: Optional[Sequence[NameValuePairArgs]] = None,
internal_load_balancing_mode: Optional[Union[str, LoadBalancingMode]] = None,
ipssl_address_count: Optional[int] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
dns_suffix: Optional[str] = None,
name: Optional[str] = None,
networking_configuration: Optional[AseV3NetworkingConfigurationArgs] = None,
dedicated_host_count: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
upgrade_preference: Optional[Union[str, UpgradePreference]] = None,
user_whitelisted_ip_ranges: Optional[Sequence[str]] = None,
custom_dns_suffix_configuration: Optional[CustomDnsSuffixConfigurationArgs] = None,
zone_redundant: Optional[bool] = None)
func NewAppServiceEnvironment(ctx *Context, name string, args AppServiceEnvironmentArgs, opts ...ResourceOption) (*AppServiceEnvironment, error)
public AppServiceEnvironment(string name, AppServiceEnvironmentArgs args, CustomResourceOptions? opts = null)
public AppServiceEnvironment(String name, AppServiceEnvironmentArgs args)
public AppServiceEnvironment(String name, AppServiceEnvironmentArgs args, CustomResourceOptions options)
type: azure-native:web:AppServiceEnvironment
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 AppServiceEnvironmentArgs
- 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 AppServiceEnvironmentArgs
- 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 AppServiceEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppServiceEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppServiceEnvironmentArgs
- 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 appServiceEnvironmentResource = new AzureNative.Web.AppServiceEnvironment("appServiceEnvironmentResource", new()
{
ResourceGroupName = "string",
VirtualNetwork = new AzureNative.Web.Inputs.VirtualNetworkProfileArgs
{
Id = "string",
Subnet = "string",
},
FrontEndScaleFactor = 0,
MultiSize = "string",
ClusterSettings = new[]
{
new AzureNative.Web.Inputs.NameValuePairArgs
{
Name = "string",
Value = "string",
},
},
InternalLoadBalancingMode = "string",
IpsslAddressCount = 0,
Kind = "string",
Location = "string",
DnsSuffix = "string",
Name = "string",
NetworkingConfiguration = new AzureNative.Web.Inputs.AseV3NetworkingConfigurationArgs
{
AllowNewPrivateEndpointConnections = false,
FtpEnabled = false,
InboundIpAddressOverride = "string",
Kind = "string",
RemoteDebugEnabled = false,
},
DedicatedHostCount = 0,
Tags =
{
{ "string", "string" },
},
UpgradePreference = "string",
UserWhitelistedIpRanges = new[]
{
"string",
},
CustomDnsSuffixConfiguration = new AzureNative.Web.Inputs.CustomDnsSuffixConfigurationArgs
{
CertificateUrl = "string",
DnsSuffix = "string",
KeyVaultReferenceIdentity = "string",
Kind = "string",
},
ZoneRedundant = false,
});
example, err := web.NewAppServiceEnvironment(ctx, "appServiceEnvironmentResource", &web.AppServiceEnvironmentArgs{
ResourceGroupName: pulumi.String("string"),
VirtualNetwork: &web.VirtualNetworkProfileArgs{
Id: pulumi.String("string"),
Subnet: pulumi.String("string"),
},
FrontEndScaleFactor: pulumi.Int(0),
MultiSize: pulumi.String("string"),
ClusterSettings: web.NameValuePairArray{
&web.NameValuePairArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
InternalLoadBalancingMode: pulumi.String("string"),
IpsslAddressCount: pulumi.Int(0),
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
DnsSuffix: pulumi.String("string"),
Name: pulumi.String("string"),
NetworkingConfiguration: &web.AseV3NetworkingConfigurationArgs{
AllowNewPrivateEndpointConnections: pulumi.Bool(false),
FtpEnabled: pulumi.Bool(false),
InboundIpAddressOverride: pulumi.String("string"),
Kind: pulumi.String("string"),
RemoteDebugEnabled: pulumi.Bool(false),
},
DedicatedHostCount: pulumi.Int(0),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
UpgradePreference: pulumi.String("string"),
UserWhitelistedIpRanges: pulumi.StringArray{
pulumi.String("string"),
},
CustomDnsSuffixConfiguration: &web.CustomDnsSuffixConfigurationArgs{
CertificateUrl: pulumi.String("string"),
DnsSuffix: pulumi.String("string"),
KeyVaultReferenceIdentity: pulumi.String("string"),
Kind: pulumi.String("string"),
},
ZoneRedundant: pulumi.Bool(false),
})
var appServiceEnvironmentResource = new AppServiceEnvironment("appServiceEnvironmentResource", AppServiceEnvironmentArgs.builder()
.resourceGroupName("string")
.virtualNetwork(VirtualNetworkProfileArgs.builder()
.id("string")
.subnet("string")
.build())
.frontEndScaleFactor(0)
.multiSize("string")
.clusterSettings(NameValuePairArgs.builder()
.name("string")
.value("string")
.build())
.internalLoadBalancingMode("string")
.ipsslAddressCount(0)
.kind("string")
.location("string")
.dnsSuffix("string")
.name("string")
.networkingConfiguration(AseV3NetworkingConfigurationArgs.builder()
.allowNewPrivateEndpointConnections(false)
.ftpEnabled(false)
.inboundIpAddressOverride("string")
.kind("string")
.remoteDebugEnabled(false)
.build())
.dedicatedHostCount(0)
.tags(Map.of("string", "string"))
.upgradePreference("string")
.userWhitelistedIpRanges("string")
.customDnsSuffixConfiguration(CustomDnsSuffixConfigurationArgs.builder()
.certificateUrl("string")
.dnsSuffix("string")
.keyVaultReferenceIdentity("string")
.kind("string")
.build())
.zoneRedundant(false)
.build());
app_service_environment_resource = azure_native.web.AppServiceEnvironment("appServiceEnvironmentResource",
resource_group_name="string",
virtual_network={
"id": "string",
"subnet": "string",
},
front_end_scale_factor=0,
multi_size="string",
cluster_settings=[{
"name": "string",
"value": "string",
}],
internal_load_balancing_mode="string",
ipssl_address_count=0,
kind="string",
location="string",
dns_suffix="string",
name="string",
networking_configuration={
"allowNewPrivateEndpointConnections": False,
"ftpEnabled": False,
"inboundIpAddressOverride": "string",
"kind": "string",
"remoteDebugEnabled": False,
},
dedicated_host_count=0,
tags={
"string": "string",
},
upgrade_preference="string",
user_whitelisted_ip_ranges=["string"],
custom_dns_suffix_configuration={
"certificateUrl": "string",
"dnsSuffix": "string",
"keyVaultReferenceIdentity": "string",
"kind": "string",
},
zone_redundant=False)
const appServiceEnvironmentResource = new azure_native.web.AppServiceEnvironment("appServiceEnvironmentResource", {
resourceGroupName: "string",
virtualNetwork: {
id: "string",
subnet: "string",
},
frontEndScaleFactor: 0,
multiSize: "string",
clusterSettings: [{
name: "string",
value: "string",
}],
internalLoadBalancingMode: "string",
ipsslAddressCount: 0,
kind: "string",
location: "string",
dnsSuffix: "string",
name: "string",
networkingConfiguration: {
allowNewPrivateEndpointConnections: false,
ftpEnabled: false,
inboundIpAddressOverride: "string",
kind: "string",
remoteDebugEnabled: false,
},
dedicatedHostCount: 0,
tags: {
string: "string",
},
upgradePreference: "string",
userWhitelistedIpRanges: ["string"],
customDnsSuffixConfiguration: {
certificateUrl: "string",
dnsSuffix: "string",
keyVaultReferenceIdentity: "string",
kind: "string",
},
zoneRedundant: false,
});
type: azure-native:web:AppServiceEnvironment
properties:
clusterSettings:
- name: string
value: string
customDnsSuffixConfiguration:
certificateUrl: string
dnsSuffix: string
keyVaultReferenceIdentity: string
kind: string
dedicatedHostCount: 0
dnsSuffix: string
frontEndScaleFactor: 0
internalLoadBalancingMode: string
ipsslAddressCount: 0
kind: string
location: string
multiSize: string
name: string
networkingConfiguration:
allowNewPrivateEndpointConnections: false
ftpEnabled: false
inboundIpAddressOverride: string
kind: string
remoteDebugEnabled: false
resourceGroupName: string
tags:
string: string
upgradePreference: string
userWhitelistedIpRanges:
- string
virtualNetwork:
id: string
subnet: string
zoneRedundant: false
AppServiceEnvironment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AppServiceEnvironment resource accepts the following input properties:
- Resource
Group stringName - Name of the resource group to which the resource belongs.
- Virtual
Network Pulumi.Azure Native. Web. Inputs. Virtual Network Profile - Description of the Virtual Network.
- Cluster
Settings List<Pulumi.Azure Native. Web. Inputs. Name Value Pair> - Custom settings for changing the behavior of the App Service Environment.
- Custom
Dns Pulumi.Suffix Configuration Azure Native. Web. Inputs. Custom Dns Suffix Configuration - Full view of the custom domain suffix configuration for ASEv3.
- Dedicated
Host intCount - Dedicated Host Count
- Dns
Suffix string - DNS suffix of the App Service Environment.
- Front
End intScale Factor - Scale factor for front-ends.
- Internal
Load string | Pulumi.Balancing Mode Azure Native. Web. Load Balancing Mode - Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.
- Ipssl
Address intCount - Number of IP SSL addresses reserved for the App Service Environment.
- Kind string
- Kind of resource.
- Location string
- Resource Location.
- Multi
Size string - Front-end VM size, e.g. "Medium", "Large".
- Name string
- Name of the App Service Environment.
- Networking
Configuration Pulumi.Azure Native. Web. Inputs. Ase V3Networking Configuration - Full view of networking configuration for an ASE.
- Dictionary<string, string>
- Resource tags.
- Upgrade
Preference string | Pulumi.Azure Native. Web. Upgrade Preference - Upgrade Preference
- User
Whitelisted List<string>Ip Ranges - User added ip ranges to whitelist on ASE db
- Zone
Redundant bool - Whether or not this App Service Environment is zone-redundant.
- Resource
Group stringName - Name of the resource group to which the resource belongs.
- Virtual
Network VirtualNetwork Profile Args - Description of the Virtual Network.
- Cluster
Settings []NameValue Pair Args - Custom settings for changing the behavior of the App Service Environment.
- Custom
Dns CustomSuffix Configuration Dns Suffix Configuration Args - Full view of the custom domain suffix configuration for ASEv3.
- Dedicated
Host intCount - Dedicated Host Count
- Dns
Suffix string - DNS suffix of the App Service Environment.
- Front
End intScale Factor - Scale factor for front-ends.
- Internal
Load string | LoadBalancing Mode Balancing Mode - Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.
- Ipssl
Address intCount - Number of IP SSL addresses reserved for the App Service Environment.
- Kind string
- Kind of resource.
- Location string
- Resource Location.
- Multi
Size string - Front-end VM size, e.g. "Medium", "Large".
- Name string
- Name of the App Service Environment.
- Networking
Configuration AseV3Networking Configuration Args - Full view of networking configuration for an ASE.
- map[string]string
- Resource tags.
- Upgrade
Preference string | UpgradePreference - Upgrade Preference
- User
Whitelisted []stringIp Ranges - User added ip ranges to whitelist on ASE db
- Zone
Redundant bool - Whether or not this App Service Environment is zone-redundant.
- resource
Group StringName - Name of the resource group to which the resource belongs.
- virtual
Network VirtualNetwork Profile - Description of the Virtual Network.
- cluster
Settings List<NameValue Pair> - Custom settings for changing the behavior of the App Service Environment.
- custom
Dns CustomSuffix Configuration Dns Suffix Configuration - Full view of the custom domain suffix configuration for ASEv3.
- dedicated
Host IntegerCount - Dedicated Host Count
- dns
Suffix String - DNS suffix of the App Service Environment.
- front
End IntegerScale Factor - Scale factor for front-ends.
- internal
Load String | LoadBalancing Mode Balancing Mode - Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.
- ipssl
Address IntegerCount - Number of IP SSL addresses reserved for the App Service Environment.
- kind String
- Kind of resource.
- location String
- Resource Location.
- multi
Size String - Front-end VM size, e.g. "Medium", "Large".
- name String
- Name of the App Service Environment.
- networking
Configuration AseV3Networking Configuration - Full view of networking configuration for an ASE.
- Map<String,String>
- Resource tags.
- upgrade
Preference String | UpgradePreference - Upgrade Preference
- user
Whitelisted List<String>Ip Ranges - User added ip ranges to whitelist on ASE db
- zone
Redundant Boolean - Whether or not this App Service Environment is zone-redundant.
- resource
Group stringName - Name of the resource group to which the resource belongs.
- virtual
Network VirtualNetwork Profile - Description of the Virtual Network.
- cluster
Settings NameValue Pair[] - Custom settings for changing the behavior of the App Service Environment.
- custom
Dns CustomSuffix Configuration Dns Suffix Configuration - Full view of the custom domain suffix configuration for ASEv3.
- dedicated
Host numberCount - Dedicated Host Count
- dns
Suffix string - DNS suffix of the App Service Environment.
- front
End numberScale Factor - Scale factor for front-ends.
- internal
Load string | LoadBalancing Mode Balancing Mode - Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.
- ipssl
Address numberCount - Number of IP SSL addresses reserved for the App Service Environment.
- kind string
- Kind of resource.
- location string
- Resource Location.
- multi
Size string - Front-end VM size, e.g. "Medium", "Large".
- name string
- Name of the App Service Environment.
- networking
Configuration AseV3Networking Configuration - Full view of networking configuration for an ASE.
- {[key: string]: string}
- Resource tags.
- upgrade
Preference string | UpgradePreference - Upgrade Preference
- user
Whitelisted string[]Ip Ranges - User added ip ranges to whitelist on ASE db
- zone
Redundant boolean - Whether or not this App Service Environment is zone-redundant.
- resource_
group_ strname - Name of the resource group to which the resource belongs.
- virtual_
network VirtualNetwork Profile Args - Description of the Virtual Network.
- cluster_
settings Sequence[NameValue Pair Args] - Custom settings for changing the behavior of the App Service Environment.
- custom_
dns_ Customsuffix_ configuration Dns Suffix Configuration Args - Full view of the custom domain suffix configuration for ASEv3.
- dedicated_
host_ intcount - Dedicated Host Count
- dns_
suffix str - DNS suffix of the App Service Environment.
- front_
end_ intscale_ factor - Scale factor for front-ends.
- internal_
load_ str | Loadbalancing_ mode Balancing Mode - Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.
- ipssl_
address_ intcount - Number of IP SSL addresses reserved for the App Service Environment.
- kind str
- Kind of resource.
- location str
- Resource Location.
- multi_
size str - Front-end VM size, e.g. "Medium", "Large".
- name str
- Name of the App Service Environment.
- networking_
configuration AseV3Networking Configuration Args - Full view of networking configuration for an ASE.
- Mapping[str, str]
- Resource tags.
- upgrade_
preference str | UpgradePreference - Upgrade Preference
- user_
whitelisted_ Sequence[str]ip_ ranges - User added ip ranges to whitelist on ASE db
- zone_
redundant bool - Whether or not this App Service Environment is zone-redundant.
- resource
Group StringName - Name of the resource group to which the resource belongs.
- virtual
Network Property Map - Description of the Virtual Network.
- cluster
Settings List<Property Map> - Custom settings for changing the behavior of the App Service Environment.
- custom
Dns Property MapSuffix Configuration - Full view of the custom domain suffix configuration for ASEv3.
- dedicated
Host NumberCount - Dedicated Host Count
- dns
Suffix String - DNS suffix of the App Service Environment.
- front
End NumberScale Factor - Scale factor for front-ends.
- internal
Load String | "None" | "Web" | "Publishing" | "Web, Publishing"Balancing Mode - Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.
- ipssl
Address NumberCount - Number of IP SSL addresses reserved for the App Service Environment.
- kind String
- Kind of resource.
- location String
- Resource Location.
- multi
Size String - Front-end VM size, e.g. "Medium", "Large".
- name String
- Name of the App Service Environment.
- networking
Configuration Property Map - Full view of networking configuration for an ASE.
- Map<String>
- Resource tags.
- upgrade
Preference String | "None" | "Early" | "Late" | "Manual" - Upgrade Preference
- user
Whitelisted List<String>Ip Ranges - User added ip ranges to whitelist on ASE db
- zone
Redundant Boolean - Whether or not this App Service Environment is zone-redundant.
Outputs
All input properties are implicitly available as output properties. Additionally, the AppServiceEnvironment resource produces the following output properties:
- Has
Linux boolWorkers - Flag that displays whether an ASE has linux workers or not
- Id string
- The provider-assigned unique ID for this managed resource.
- Maximum
Number intOf Machines - Maximum number of VMs in the App Service Environment.
- Multi
Role intCount - Number of front-end instances.
- Provisioning
State string - Provisioning state of the App Service Environment.
- Status string
- Current status of the App Service Environment.
- Suspended bool
- true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available (most likely because NSG blocked the incoming traffic).
- Type string
- Resource type.
- Upgrade
Availability string - Whether an upgrade is available for this App Service Environment.
- Has
Linux boolWorkers - Flag that displays whether an ASE has linux workers or not
- Id string
- The provider-assigned unique ID for this managed resource.
- Maximum
Number intOf Machines - Maximum number of VMs in the App Service Environment.
- Multi
Role intCount - Number of front-end instances.
- Provisioning
State string - Provisioning state of the App Service Environment.
- Status string
- Current status of the App Service Environment.
- Suspended bool
- true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available (most likely because NSG blocked the incoming traffic).
- Type string
- Resource type.
- Upgrade
Availability string - Whether an upgrade is available for this App Service Environment.
- has
Linux BooleanWorkers - Flag that displays whether an ASE has linux workers or not
- id String
- The provider-assigned unique ID for this managed resource.
- maximum
Number IntegerOf Machines - Maximum number of VMs in the App Service Environment.
- multi
Role IntegerCount - Number of front-end instances.
- provisioning
State String - Provisioning state of the App Service Environment.
- status String
- Current status of the App Service Environment.
- suspended Boolean
- true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available (most likely because NSG blocked the incoming traffic).
- type String
- Resource type.
- upgrade
Availability String - Whether an upgrade is available for this App Service Environment.
- has
Linux booleanWorkers - Flag that displays whether an ASE has linux workers or not
- id string
- The provider-assigned unique ID for this managed resource.
- maximum
Number numberOf Machines - Maximum number of VMs in the App Service Environment.
- multi
Role numberCount - Number of front-end instances.
- provisioning
State string - Provisioning state of the App Service Environment.
- status string
- Current status of the App Service Environment.
- suspended boolean
- true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available (most likely because NSG blocked the incoming traffic).
- type string
- Resource type.
- upgrade
Availability string - Whether an upgrade is available for this App Service Environment.
- has_
linux_ boolworkers - Flag that displays whether an ASE has linux workers or not
- id str
- The provider-assigned unique ID for this managed resource.
- maximum_
number_ intof_ machines - Maximum number of VMs in the App Service Environment.
- multi_
role_ intcount - Number of front-end instances.
- provisioning_
state str - Provisioning state of the App Service Environment.
- status str
- Current status of the App Service Environment.
- suspended bool
- true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available (most likely because NSG blocked the incoming traffic).
- type str
- Resource type.
- upgrade_
availability str - Whether an upgrade is available for this App Service Environment.
- has
Linux BooleanWorkers - Flag that displays whether an ASE has linux workers or not
- id String
- The provider-assigned unique ID for this managed resource.
- maximum
Number NumberOf Machines - Maximum number of VMs in the App Service Environment.
- multi
Role NumberCount - Number of front-end instances.
- provisioning
State String - Provisioning state of the App Service Environment.
- status String
- Current status of the App Service Environment.
- suspended Boolean
- true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available (most likely because NSG blocked the incoming traffic).
- type String
- Resource type.
- upgrade
Availability String - Whether an upgrade is available for this App Service Environment.
Supporting Types
AseV3NetworkingConfiguration, AseV3NetworkingConfigurationArgs
- Allow
New boolPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- Ftp
Enabled bool - Property to enable and disable FTP on ASEV3
- Inbound
Ip stringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- Kind string
- Kind of resource.
- Remote
Debug boolEnabled - Property to enable and disable Remote Debug on ASEV3
- Allow
New boolPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- Ftp
Enabled bool - Property to enable and disable FTP on ASEV3
- Inbound
Ip stringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- Kind string
- Kind of resource.
- Remote
Debug boolEnabled - Property to enable and disable Remote Debug on ASEV3
- allow
New BooleanPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp
Enabled Boolean - Property to enable and disable FTP on ASEV3
- inbound
Ip StringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind String
- Kind of resource.
- remote
Debug BooleanEnabled - Property to enable and disable Remote Debug on ASEV3
- allow
New booleanPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp
Enabled boolean - Property to enable and disable FTP on ASEV3
- inbound
Ip stringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind string
- Kind of resource.
- remote
Debug booleanEnabled - Property to enable and disable Remote Debug on ASEV3
- allow_
new_ boolprivate_ endpoint_ connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp_
enabled bool - Property to enable and disable FTP on ASEV3
- inbound_
ip_ straddress_ override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind str
- Kind of resource.
- remote_
debug_ boolenabled - Property to enable and disable Remote Debug on ASEV3
- allow
New BooleanPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp
Enabled Boolean - Property to enable and disable FTP on ASEV3
- inbound
Ip StringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind String
- Kind of resource.
- remote
Debug BooleanEnabled - Property to enable and disable Remote Debug on ASEV3
AseV3NetworkingConfigurationResponse, AseV3NetworkingConfigurationResponseArgs
- External
Inbound List<string>Ip Addresses - Id string
- Resource Id.
- Internal
Inbound List<string>Ip Addresses - Linux
Outbound List<string>Ip Addresses - Name string
- Resource Name.
- Type string
- Resource type.
- Windows
Outbound List<string>Ip Addresses - Allow
New boolPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- Ftp
Enabled bool - Property to enable and disable FTP on ASEV3
- Inbound
Ip stringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- Kind string
- Kind of resource.
- Remote
Debug boolEnabled - Property to enable and disable Remote Debug on ASEV3
- External
Inbound []stringIp Addresses - Id string
- Resource Id.
- Internal
Inbound []stringIp Addresses - Linux
Outbound []stringIp Addresses - Name string
- Resource Name.
- Type string
- Resource type.
- Windows
Outbound []stringIp Addresses - Allow
New boolPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- Ftp
Enabled bool - Property to enable and disable FTP on ASEV3
- Inbound
Ip stringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- Kind string
- Kind of resource.
- Remote
Debug boolEnabled - Property to enable and disable Remote Debug on ASEV3
- external
Inbound List<String>Ip Addresses - id String
- Resource Id.
- internal
Inbound List<String>Ip Addresses - linux
Outbound List<String>Ip Addresses - name String
- Resource Name.
- type String
- Resource type.
- windows
Outbound List<String>Ip Addresses - allow
New BooleanPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp
Enabled Boolean - Property to enable and disable FTP on ASEV3
- inbound
Ip StringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind String
- Kind of resource.
- remote
Debug BooleanEnabled - Property to enable and disable Remote Debug on ASEV3
- external
Inbound string[]Ip Addresses - id string
- Resource Id.
- internal
Inbound string[]Ip Addresses - linux
Outbound string[]Ip Addresses - name string
- Resource Name.
- type string
- Resource type.
- windows
Outbound string[]Ip Addresses - allow
New booleanPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp
Enabled boolean - Property to enable and disable FTP on ASEV3
- inbound
Ip stringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind string
- Kind of resource.
- remote
Debug booleanEnabled - Property to enable and disable Remote Debug on ASEV3
- external_
inbound_ Sequence[str]ip_ addresses - id str
- Resource Id.
- internal_
inbound_ Sequence[str]ip_ addresses - linux_
outbound_ Sequence[str]ip_ addresses - name str
- Resource Name.
- type str
- Resource type.
- windows_
outbound_ Sequence[str]ip_ addresses - allow_
new_ boolprivate_ endpoint_ connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp_
enabled bool - Property to enable and disable FTP on ASEV3
- inbound_
ip_ straddress_ override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind str
- Kind of resource.
- remote_
debug_ boolenabled - Property to enable and disable Remote Debug on ASEV3
- external
Inbound List<String>Ip Addresses - id String
- Resource Id.
- internal
Inbound List<String>Ip Addresses - linux
Outbound List<String>Ip Addresses - name String
- Resource Name.
- type String
- Resource type.
- windows
Outbound List<String>Ip Addresses - allow
New BooleanPrivate Endpoint Connections - Property to enable and disable new private endpoint connection creation on ASE
- ftp
Enabled Boolean - Property to enable and disable FTP on ASEV3
- inbound
Ip StringAddress Override - Customer provided Inbound IP Address. Only able to be set on Ase create.
- kind String
- Kind of resource.
- remote
Debug BooleanEnabled - Property to enable and disable Remote Debug on ASEV3
CustomDnsSuffixConfiguration, CustomDnsSuffixConfigurationArgs
- Certificate
Url string - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- Dns
Suffix string - The default custom domain suffix to use for all sites deployed on the ASE.
- Key
Vault stringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- Kind string
- Kind of resource.
- Certificate
Url string - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- Dns
Suffix string - The default custom domain suffix to use for all sites deployed on the ASE.
- Key
Vault stringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- Kind string
- Kind of resource.
- certificate
Url String - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns
Suffix String - The default custom domain suffix to use for all sites deployed on the ASE.
- key
Vault StringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind String
- Kind of resource.
- certificate
Url string - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns
Suffix string - The default custom domain suffix to use for all sites deployed on the ASE.
- key
Vault stringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind string
- Kind of resource.
- certificate_
url str - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns_
suffix str - The default custom domain suffix to use for all sites deployed on the ASE.
- key_
vault_ strreference_ identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind str
- Kind of resource.
- certificate
Url String - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns
Suffix String - The default custom domain suffix to use for all sites deployed on the ASE.
- key
Vault StringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind String
- Kind of resource.
CustomDnsSuffixConfigurationResponse, CustomDnsSuffixConfigurationResponseArgs
- Id string
- Resource Id.
- Name string
- Resource Name.
- Provisioning
Details string - Provisioning
State string - Type string
- Resource type.
- Certificate
Url string - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- Dns
Suffix string - The default custom domain suffix to use for all sites deployed on the ASE.
- Key
Vault stringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- Kind string
- Kind of resource.
- Id string
- Resource Id.
- Name string
- Resource Name.
- Provisioning
Details string - Provisioning
State string - Type string
- Resource type.
- Certificate
Url string - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- Dns
Suffix string - The default custom domain suffix to use for all sites deployed on the ASE.
- Key
Vault stringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- Kind string
- Kind of resource.
- id String
- Resource Id.
- name String
- Resource Name.
- provisioning
Details String - provisioning
State String - type String
- Resource type.
- certificate
Url String - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns
Suffix String - The default custom domain suffix to use for all sites deployed on the ASE.
- key
Vault StringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind String
- Kind of resource.
- id string
- Resource Id.
- name string
- Resource Name.
- provisioning
Details string - provisioning
State string - type string
- Resource type.
- certificate
Url string - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns
Suffix string - The default custom domain suffix to use for all sites deployed on the ASE.
- key
Vault stringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind string
- Kind of resource.
- id str
- Resource Id.
- name str
- Resource Name.
- provisioning_
details str - provisioning_
state str - type str
- Resource type.
- certificate_
url str - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns_
suffix str - The default custom domain suffix to use for all sites deployed on the ASE.
- key_
vault_ strreference_ identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind str
- Kind of resource.
- id String
- Resource Id.
- name String
- Resource Name.
- provisioning
Details String - provisioning
State String - type String
- Resource type.
- certificate
Url String - The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
- dns
Suffix String - The default custom domain suffix to use for all sites deployed on the ASE.
- key
Vault StringReference Identity - The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
- kind String
- Kind of resource.
LoadBalancingMode, LoadBalancingModeArgs
- None
- None
- Web
- Web
- Publishing
- Publishing
- Web_Publishing
- Web, Publishing
- Load
Balancing Mode None - None
- Load
Balancing Mode Web - Web
- Load
Balancing Mode Publishing - Publishing
- Load
Balancing Mode_Web_Publishing - Web, Publishing
- None
- None
- Web
- Web
- Publishing
- Publishing
- Web_Publishing
- Web, Publishing
- None
- None
- Web
- Web
- Publishing
- Publishing
- Web_Publishing
- Web, Publishing
- NONE
- None
- WEB
- Web
- PUBLISHING
- Publishing
- WEB_PUBLISHING
- Web, Publishing
- "None"
- None
- "Web"
- Web
- "Publishing"
- Publishing
- "Web, Publishing"
- Web, Publishing
NameValuePair, NameValuePairArgs
NameValuePairResponse, NameValuePairResponseArgs
UpgradePreference, UpgradePreferenceArgs
- None
- NoneNo preference on when this App Service Environment will be upgraded
- Early
- EarlyThis App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Late
- LateThis App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Manual
- ManualASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically
- Upgrade
Preference None - NoneNo preference on when this App Service Environment will be upgraded
- Upgrade
Preference Early - EarlyThis App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Upgrade
Preference Late - LateThis App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Upgrade
Preference Manual - ManualASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically
- None
- NoneNo preference on when this App Service Environment will be upgraded
- Early
- EarlyThis App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Late
- LateThis App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Manual
- ManualASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically
- None
- NoneNo preference on when this App Service Environment will be upgraded
- Early
- EarlyThis App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Late
- LateThis App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Manual
- ManualASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically
- NONE
- NoneNo preference on when this App Service Environment will be upgraded
- EARLY
- EarlyThis App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- LATE
- LateThis App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- MANUAL
- ManualASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically
- "None"
- NoneNo preference on when this App Service Environment will be upgraded
- "Early"
- EarlyThis App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- "Late"
- LateThis App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- "Manual"
- ManualASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically
VirtualNetworkProfile, VirtualNetworkProfileArgs
VirtualNetworkProfileResponse, VirtualNetworkProfileResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:web:AppServiceEnvironment test-ase /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0