LinuxWebAppSlotArgs

data class LinuxWebAppSlotArgs(val appServiceId: Output<String>? = null, val appSettings: Output<Map<String, String>>? = null, val authSettings: Output<LinuxWebAppSlotAuthSettingsArgs>? = null, val authSettingsV2: Output<LinuxWebAppSlotAuthSettingsV2Args>? = null, val backup: Output<LinuxWebAppSlotBackupArgs>? = 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<LinuxWebAppSlotConnectionStringArgs>>? = null, val enabled: Output<Boolean>? = null, val httpsOnly: Output<Boolean>? = null, val identity: Output<LinuxWebAppSlotIdentityArgs>? = null, val keyVaultReferenceIdentityId: Output<String>? = null, val logs: Output<LinuxWebAppSlotLogsArgs>? = null, val name: Output<String>? = null, val publicNetworkAccessEnabled: Output<Boolean>? = null, val servicePlanId: Output<String>? = null, val siteConfig: Output<LinuxWebAppSlotSiteConfigArgs>? = null, val storageAccounts: Output<List<LinuxWebAppSlotStorageAccountArgs>>? = null, val tags: Output<Map<String, String>>? = null, val virtualNetworkSubnetId: Output<String>? = null, val zipDeployFile: Output<String>? = null) : ConvertibleToJava<LinuxWebAppSlotArgs>

Manages a Linux Web App Slot.

Example Usage

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 com.pulumi.azure.appservice.LinuxWebAppSlot;
import com.pulumi.azure.appservice.LinuxWebAppSlotArgs;
import com.pulumi.azure.appservice.inputs.LinuxWebAppSlotSiteConfigArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleServicePlan = new ServicePlan("exampleServicePlan", ServicePlanArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.osType("Linux")
.skuName("P1v2")
.build());
var exampleLinuxWebApp = new LinuxWebApp("exampleLinuxWebApp", LinuxWebAppArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleServicePlan.location())
.servicePlanId(exampleServicePlan.id())
.siteConfig()
.build());
var exampleLinuxWebAppSlot = new LinuxWebAppSlot("exampleLinuxWebAppSlot", LinuxWebAppSlotArgs.builder()
.appServiceId(exampleLinuxWebApp.id())
.siteConfig()
.build());
}
}

Import

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

$ pulumi import azure:appservice/linuxWebAppSlot:LinuxWebAppSlot example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1/slots/slot1

Constructors

Link copied to clipboard
fun LinuxWebAppSlotArgs(appServiceId: Output<String>? = null, appSettings: Output<Map<String, String>>? = null, authSettings: Output<LinuxWebAppSlotAuthSettingsArgs>? = null, authSettingsV2: Output<LinuxWebAppSlotAuthSettingsV2Args>? = null, backup: Output<LinuxWebAppSlotBackupArgs>? = null, clientAffinityEnabled: Output<Boolean>? = null, clientCertificateEnabled: Output<Boolean>? = null, clientCertificateExclusionPaths: Output<String>? = null, clientCertificateMode: Output<String>? = null, connectionStrings: Output<List<LinuxWebAppSlotConnectionStringArgs>>? = null, enabled: Output<Boolean>? = null, httpsOnly: Output<Boolean>? = null, identity: Output<LinuxWebAppSlotIdentityArgs>? = null, keyVaultReferenceIdentityId: Output<String>? = null, logs: Output<LinuxWebAppSlotLogsArgs>? = null, name: Output<String>? = null, publicNetworkAccessEnabled: Output<Boolean>? = null, servicePlanId: Output<String>? = null, siteConfig: Output<LinuxWebAppSlotSiteConfigArgs>? = null, storageAccounts: Output<List<LinuxWebAppSlotStorageAccountArgs>>? = null, tags: Output<Map<String, String>>? = null, virtualNetworkSubnetId: Output<String>? = null, zipDeployFile: Output<String>? = null)

Functions

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

Properties

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

The ID of the Linux Web App this Deployment Slot will be part of.

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

A map of key-value pairs of App Settings.

Link copied to clipboard

An 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<LinuxWebAppSlotBackupArgs>? = 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_cert_enabled is false

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
val httpsOnly: Output<Boolean>? = null

Should the Linux Web App require HTTPS connections.

Link copied to clipboard

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 logs: Output<LinuxWebAppSlotLogsArgs>? = 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 servicePlanId: Output<String>? = null

The ID of the Service Plan in which to run this slot. If not specified the same Service Plan as the Linux Web App will be used.

Link copied to clipboard

A site_config 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 that should be assigned to the Linux Web App.

Link copied to clipboard
val virtualNetworkSubnetId: Output<String>? = null
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.