LinuxWebAppArgs

data class LinuxWebAppArgs(val appSettings: Output<Map<String, String>>? = null, val authSettings: Output<LinuxWebAppAuthSettingsArgs>? = null, val authSettingsV2: Output<LinuxWebAppAuthSettingsV2Args>? = null, val backup: Output<LinuxWebAppBackupArgs>? = null, val clientAffinityEnabled: Output<Boolean>? = null, val clientCertificateEnabled: Output<Boolean>? = null, val clientCertificateExclusionPaths: Output<String>? = null, val clientCertificateMode: Output<String>? = null, val connectionStrings: Output<List<LinuxWebAppConnectionStringArgs>>? = null, val enabled: Output<Boolean>? = null, val ftpPublishBasicAuthenticationEnabled: Output<Boolean>? = null, val httpsOnly: Output<Boolean>? = null, val identity: Output<LinuxWebAppIdentityArgs>? = null, val keyVaultReferenceIdentityId: Output<String>? = null, val location: Output<String>? = null, val logs: Output<LinuxWebAppLogsArgs>? = null, val name: Output<String>? = null, val publicNetworkAccessEnabled: Output<Boolean>? = null, val resourceGroupName: Output<String>? = null, val servicePlanId: Output<String>? = null, val siteConfig: Output<LinuxWebAppSiteConfigArgs>? = null, val stickySettings: Output<LinuxWebAppStickySettingsArgs>? = null, val storageAccounts: Output<List<LinuxWebAppStorageAccountArgs>>? = null, val tags: Output<Map<String, String>>? = null, val virtualNetworkBackupRestoreEnabled: Output<Boolean>? = null, val virtualNetworkSubnetId: Output<String>? = null, val webdeployPublishBasicAuthenticationEnabled: Output<Boolean>? = null, val zipDeployFile: Output<String>? = null) : ConvertibleToJava<LinuxWebAppArgs>

Manages a Linux Web App.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleServicePlan = new azure.appservice.ServicePlan("example", {
name: "example",
resourceGroupName: example.name,
location: example.location,
osType: "Linux",
skuName: "P1v2",
});
const exampleLinuxWebApp = new azure.appservice.LinuxWebApp("example", {
name: "example",
resourceGroupName: example.name,
location: exampleServicePlan.location,
servicePlanId: exampleServicePlan.id,
siteConfig: {},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_service_plan = azure.appservice.ServicePlan("example",
name="example",
resource_group_name=example.name,
location=example.location,
os_type="Linux",
sku_name="P1v2")
example_linux_web_app = azure.appservice.LinuxWebApp("example",
name="example",
resource_group_name=example.name,
location=example_service_plan.location,
service_plan_id=example_service_plan.id,
site_config={})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleServicePlan = new Azure.AppService.ServicePlan("example", new()
{
Name = "example",
ResourceGroupName = example.Name,
Location = example.Location,
OsType = "Linux",
SkuName = "P1v2",
});
var exampleLinuxWebApp = new Azure.AppService.LinuxWebApp("example", new()
{
Name = "example",
ResourceGroupName = example.Name,
Location = exampleServicePlan.Location,
ServicePlanId = exampleServicePlan.Id,
SiteConfig = null,
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appservice"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleServicePlan, err := appservice.NewServicePlan(ctx, "example", &appservice.ServicePlanArgs{
Name: pulumi.String("example"),
ResourceGroupName: example.Name,
Location: example.Location,
OsType: pulumi.String("Linux"),
SkuName: pulumi.String("P1v2"),
})
if err != nil {
return err
}
_, err = appservice.NewLinuxWebApp(ctx, "example", &appservice.LinuxWebAppArgs{
Name: pulumi.String("example"),
ResourceGroupName: example.Name,
Location: exampleServicePlan.Location,
ServicePlanId: exampleServicePlan.ID(),
SiteConfig: &appservice.LinuxWebAppSiteConfigArgs{},
})
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.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appservice.ServicePlan;
import com.pulumi.azure.appservice.ServicePlanArgs;
import com.pulumi.azure.appservice.LinuxWebApp;
import com.pulumi.azure.appservice.LinuxWebAppArgs;
import com.pulumi.azure.appservice.inputs.LinuxWebAppSiteConfigArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleServicePlan = new ServicePlan("exampleServicePlan", ServicePlanArgs.builder()
.name("example")
.resourceGroupName(example.name())
.location(example.location())
.osType("Linux")
.skuName("P1v2")
.build());
var exampleLinuxWebApp = new LinuxWebApp("exampleLinuxWebApp", LinuxWebAppArgs.builder()
.name("example")
.resourceGroupName(example.name())
.location(exampleServicePlan.location())
.servicePlanId(exampleServicePlan.id())
.siteConfig(LinuxWebAppSiteConfigArgs.builder()
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleServicePlan:
type: azure:appservice:ServicePlan
name: example
properties:
name: example
resourceGroupName: ${example.name}
location: ${example.location}
osType: Linux
skuName: P1v2
exampleLinuxWebApp:
type: azure:appservice:LinuxWebApp
name: example
properties:
name: example
resourceGroupName: ${example.name}
location: ${exampleServicePlan.location}
servicePlanId: ${exampleServicePlan.id}
siteConfig: {}

API Providers

This resource uses the following Azure API Providers:

  • Microsoft.Web: 2023-12-01, 2023-01-01

Import

Linux Web Apps can be imported using the resource id, e.g.

$ pulumi import azure:appservice/linuxWebApp:LinuxWebApp example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1

Constructors

Link copied to clipboard
constructor(appSettings: Output<Map<String, String>>? = null, authSettings: Output<LinuxWebAppAuthSettingsArgs>? = null, authSettingsV2: Output<LinuxWebAppAuthSettingsV2Args>? = null, backup: Output<LinuxWebAppBackupArgs>? = null, clientAffinityEnabled: Output<Boolean>? = null, clientCertificateEnabled: Output<Boolean>? = null, clientCertificateExclusionPaths: Output<String>? = null, clientCertificateMode: Output<String>? = null, connectionStrings: Output<List<LinuxWebAppConnectionStringArgs>>? = null, enabled: Output<Boolean>? = null, ftpPublishBasicAuthenticationEnabled: Output<Boolean>? = null, httpsOnly: Output<Boolean>? = null, identity: Output<LinuxWebAppIdentityArgs>? = null, keyVaultReferenceIdentityId: Output<String>? = null, location: Output<String>? = null, logs: Output<LinuxWebAppLogsArgs>? = null, name: Output<String>? = null, publicNetworkAccessEnabled: Output<Boolean>? = null, resourceGroupName: Output<String>? = null, servicePlanId: Output<String>? = null, siteConfig: Output<LinuxWebAppSiteConfigArgs>? = null, stickySettings: Output<LinuxWebAppStickySettingsArgs>? = null, storageAccounts: Output<List<LinuxWebAppStorageAccountArgs>>? = null, tags: Output<Map<String, String>>? = null, virtualNetworkBackupRestoreEnabled: Output<Boolean>? = null, virtualNetworkSubnetId: Output<String>? = null, webdeployPublishBasicAuthenticationEnabled: Output<Boolean>? = null, zipDeployFile: Output<String>? = null)

Properties

Link copied to clipboard
val appSettings: Output<Map<String, String>>? = null

A map of key-value pairs of App Settings.

Link copied to clipboard

A auth_settings block as defined below.

Link copied to clipboard

An auth_settings_v2 block as defined below.

Link copied to clipboard
val backup: Output<LinuxWebAppBackupArgs>? = null

A backup block as defined below.

Link copied to clipboard
val clientAffinityEnabled: Output<Boolean>? = null

Should Client Affinity be enabled?

Link copied to clipboard
val clientCertificateEnabled: Output<Boolean>? = null

Should Client Certificates be enabled?

Link copied to clipboard

Paths to exclude when using client certificates, separated by ;

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

The Client Certificate mode. Possible values are Required, Optional, and OptionalInteractiveUser. This property has no effect when client_certificate_enabled is false. Defaults to Required.

Link copied to clipboard

One or more connection_string blocks as defined below.

Link copied to clipboard
val enabled: Output<Boolean>? = null

Should the Linux Web App be enabled? Defaults to true.

Link copied to clipboard

Should the default FTP Basic Authentication publishing profile be enabled. Defaults to true.

Link copied to clipboard
val httpsOnly: Output<Boolean>? = null

Should the Linux Web App require HTTPS connections. Defaults to false.

Link copied to clipboard
val identity: Output<LinuxWebAppIdentityArgs>? = null

An identity block as defined below.

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

The User Assigned Identity ID used for accessing KeyVault secrets. The identity must be assigned to the application in the identity block. For more information see - Access vaults with a user-assigned identity.

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

The Azure Region where the Linux Web App should exist. Changing this forces a new Linux Web App to be created.

Link copied to clipboard
val logs: Output<LinuxWebAppLogsArgs>? = null

A logs block as defined below.

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

Should public network access be enabled for the Web App. Defaults to true.

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

The name of the Resource Group where the Linux Web App should exist. Changing this forces a new Linux Web App to be created.

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

The ID of the Service Plan that this Linux App Service will be created in.

Link copied to clipboard

A site_config block as defined below.

Link copied to clipboard

A sticky_settings block as defined below.

Link copied to clipboard

One or more storage_account blocks as defined below.

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

A mapping of tags which should be assigned to the Linux Web App.

Link copied to clipboard

Whether backup and restore operations over the linked virtual network are enabled. Defaults to false.

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

Should the default WebDeploy Basic Authentication publishing credentials enabled. Defaults to true.

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

The local path and filename of the Zip packaged application to deploy to this Linux Web App.

Functions

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