Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin
import com.pulumi.azure.appservice.WindowsWebAppSlotArgs.builder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsV2Args
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsV2ArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotBackupArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotBackupArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotConnectionStringArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotConnectionStringArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotIdentityArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotIdentityArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotLogsArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotLogsArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotSiteConfigArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotSiteConfigArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotStorageAccountArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotStorageAccountArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Manages a Windows Web App Slot.
* ## Example Usage
*
* ```typescript
* 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-plan",
* resourceGroupName: example.name,
* location: example.location,
* osType: "Windows",
* skuName: "P1v2",
* });
* const exampleWindowsWebApp = new azure.appservice.WindowsWebApp("example", {
* name: "example-windows-web-app",
* resourceGroupName: example.name,
* location: exampleServicePlan.location,
* servicePlanId: exampleServicePlan.id,
* siteConfig: {},
* });
* const exampleWindowsWebAppSlot = new azure.appservice.WindowsWebAppSlot("example", {
* name: "example-slot",
* appServiceId: exampleWindowsWebApp.id,
* siteConfig: {},
* });
* ```
* ```python
* 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-plan",
* resource_group_name=example.name,
* location=example.location,
* os_type="Windows",
* sku_name="P1v2")
* example_windows_web_app = azure.appservice.WindowsWebApp("example",
* name="example-windows-web-app",
* resource_group_name=example.name,
* location=example_service_plan.location,
* service_plan_id=example_service_plan.id,
* site_config={})
* example_windows_web_app_slot = azure.appservice.WindowsWebAppSlot("example",
* name="example-slot",
* app_service_id=example_windows_web_app.id,
* site_config={})
* ```
* ```csharp
* 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-plan",
* ResourceGroupName = example.Name,
* Location = example.Location,
* OsType = "Windows",
* SkuName = "P1v2",
* });
* var exampleWindowsWebApp = new Azure.AppService.WindowsWebApp("example", new()
* {
* Name = "example-windows-web-app",
* ResourceGroupName = example.Name,
* Location = exampleServicePlan.Location,
* ServicePlanId = exampleServicePlan.Id,
* SiteConfig = null,
* });
* var exampleWindowsWebAppSlot = new Azure.AppService.WindowsWebAppSlot("example", new()
* {
* Name = "example-slot",
* AppServiceId = exampleWindowsWebApp.Id,
* SiteConfig = null,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appservice"
* "github.com/pulumi/pulumi-azure/sdk/v5/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-plan"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* OsType: pulumi.String("Windows"),
* SkuName: pulumi.String("P1v2"),
* })
* if err != nil {
* return err
* }
* exampleWindowsWebApp, err := appservice.NewWindowsWebApp(ctx, "example", &appservice.WindowsWebAppArgs{
* Name: pulumi.String("example-windows-web-app"),
* ResourceGroupName: example.Name,
* Location: exampleServicePlan.Location,
* ServicePlanId: exampleServicePlan.ID(),
* SiteConfig: nil,
* })
* if err != nil {
* return err
* }
* _, err = appservice.NewWindowsWebAppSlot(ctx, "example", &appservice.WindowsWebAppSlotArgs{
* Name: pulumi.String("example-slot"),
* AppServiceId: exampleWindowsWebApp.ID(),
* SiteConfig: nil,
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* 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.WindowsWebApp;
* import com.pulumi.azure.appservice.WindowsWebAppArgs;
* import com.pulumi.azure.appservice.inputs.WindowsWebAppSiteConfigArgs;
* import com.pulumi.azure.appservice.WindowsWebAppSlot;
* import com.pulumi.azure.appservice.WindowsWebAppSlotArgs;
* import com.pulumi.azure.appservice.inputs.WindowsWebAppSlotSiteConfigArgs;
* 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-plan")
* .resourceGroupName(example.name())
* .location(example.location())
* .osType("Windows")
* .skuName("P1v2")
* .build());
* var exampleWindowsWebApp = new WindowsWebApp("exampleWindowsWebApp", WindowsWebAppArgs.builder()
* .name("example-windows-web-app")
* .resourceGroupName(example.name())
* .location(exampleServicePlan.location())
* .servicePlanId(exampleServicePlan.id())
* .siteConfig()
* .build());
* var exampleWindowsWebAppSlot = new WindowsWebAppSlot("exampleWindowsWebAppSlot", WindowsWebAppSlotArgs.builder()
* .name("example-slot")
* .appServiceId(exampleWindowsWebApp.id())
* .siteConfig()
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleServicePlan:
* type: azure:appservice:ServicePlan
* name: example
* properties:
* name: example-plan
* resourceGroupName: ${example.name}
* location: ${example.location}
* osType: Windows
* skuName: P1v2
* exampleWindowsWebApp:
* type: azure:appservice:WindowsWebApp
* name: example
* properties:
* name: example-windows-web-app
* resourceGroupName: ${example.name}
* location: ${exampleServicePlan.location}
* servicePlanId: ${exampleServicePlan.id}
* siteConfig: {}
* exampleWindowsWebAppSlot:
* type: azure:appservice:WindowsWebAppSlot
* name: example
* properties:
* name: example-slot
* appServiceId: ${exampleWindowsWebApp.id}
* siteConfig: {}
* ```
*
* ## Import
* Windows Web Apps can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:appservice/windowsWebAppSlot:WindowsWebAppSlot example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1/slots/slot1
* ```
* @property appServiceId The ID of the Windows Web App this Deployment Slot will be part of. Changing this forces a new Windows Web App to be created.
* @property appSettings A map of key-value pairs of App Settings.
* @property authSettings An `auth_settings` block as defined below.
* @property authSettingsV2 An `auth_settings_v2` block as defined below.
* @property backup A `backup` block as defined below.
* @property clientAffinityEnabled Should Client Affinity be enabled?
* @property clientCertificateEnabled Should Client Certificates be enabled?
* @property clientCertificateExclusionPaths Paths to exclude when using client certificates, separated by ;
* @property clientCertificateMode The Client Certificate mode. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. This property has no effect when `client_cert_enabled` is `false`. Defaults to `Required`.
* @property connectionStrings One or more `connection_string` blocks as defined below.
* @property enabled Should the Windows Web App Slot be enabled? Defaults to `true`.
* @property ftpPublishBasicAuthenticationEnabled Should the default FTP Basic Authentication publishing profile be enabled. Defaults to `true`.
* @property httpsOnly Should the Windows Web App Slot require HTTPS connections. Defaults to `false`.
* @property identity An `identity` block as defined below.
* @property keyVaultReferenceIdentityId 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](https://docs.microsoft.com/azure/app-service/app-service-key-vault-references#access-vaults-with-a-user-assigned-identity)
* @property logs A `logs` block as defined below.
* @property name
* @property publicNetworkAccessEnabled Should public network access be enabled for the Web App. Defaults to `true`.
* @property servicePlanId The ID of the Service Plan in which to run this slot. If not specified the same Service Plan as the Windows Web App will be used.
* > **Note:** `service_plan_id` should only be specified if it differs from the Service Plan of the associated Windows Web App.
* @property siteConfig A `site_config` block as defined below.
* @property storageAccounts One or more `storage_account` blocks as defined below.
* > **Note:** Using this value requires `WEBSITE_RUN_FROM_PACKAGE=1` to be set on the App in `app_settings`. Refer to the [Azure docs](https://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
* @property tags A mapping of tags which should be assigned to the Windows Web App Slot.
* @property virtualNetworkSubnetId
* @property webdeployPublishBasicAuthenticationEnabled Should the default WebDeploy Basic Authentication publishing credentials enabled. Defaults to `true`.
* > **NOTE:** Setting this value to true will disable the ability to use `zip_deploy_file` which currently relies on the default publishing profile.
* @property zipDeployFile The local path and filename of the Zip packaged application to deploy to this Windows Web App.
*/
public data class WindowsWebAppSlotArgs(
public val appServiceId: Output? = null,
public val appSettings: Output