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
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 (
"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 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(Map.of("id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated"))
.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=azure_native.web.VirtualNetworkProfileArgs(
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
new AppServiceEnvironment(name: string, args: AppServiceEnvironmentArgs, opts?: CustomResourceOptions);
@overload
def AppServiceEnvironment(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_settings: Optional[Sequence[NameValuePairArgs]] = None,
custom_dns_suffix_configuration: Optional[CustomDnsSuffixConfigurationArgs] = None,
dedicated_host_count: Optional[int] = None,
dns_suffix: Optional[str] = None,
front_end_scale_factor: Optional[int] = None,
internal_load_balancing_mode: Optional[Union[str, LoadBalancingMode]] = None,
ipssl_address_count: Optional[int] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
multi_size: Optional[str] = None,
name: Optional[str] = None,
networking_configuration: Optional[AseV3NetworkingConfigurationArgs] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
upgrade_preference: Optional[Union[str, UpgradePreference]] = None,
user_whitelisted_ip_ranges: Optional[Sequence[str]] = None,
virtual_network: Optional[VirtualNetworkProfileArgs] = None,
zone_redundant: Optional[bool] = None)
@overload
def AppServiceEnvironment(resource_name: str,
args: AppServiceEnvironmentArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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
- None
No preference on when this App Service Environment will be upgraded
- Early
- Early
This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Late
- Late
This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Manual
- Manual
ASEv3 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 - None
No preference on when this App Service Environment will be upgraded
- Upgrade
Preference Early - Early
This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Upgrade
Preference Late - Late
This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Upgrade
Preference Manual - Manual
ASEv3 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
- None
No preference on when this App Service Environment will be upgraded
- Early
- Early
This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Late
- Late
This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Manual
- Manual
ASEv3 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
- None
No preference on when this App Service Environment will be upgraded
- Early
- Early
This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- Late
- Late
This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- Manual
- Manual
ASEv3 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
- None
No preference on when this App Service Environment will be upgraded
- EARLY
- Early
This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- LATE
- Late
This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- MANUAL
- Manual
ASEv3 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"
- None
No preference on when this App Service Environment will be upgraded
- "Early"
- Early
This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'
- "Late"
- Late
This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'
- "Manual"
- Manual
ASEv3 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}
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0