We recommend using Azure Native.
azure.appservice.FunctionAppActiveSlot
Explore with Pulumi AI
Manages a Function App Active Slot.
Example Usage
Windows Function App
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 exampleAccount = new azure.storage.Account("example", {
name: "windowsfunctionappsa",
resourceGroupName: example.name,
location: example.location,
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleServicePlan = new azure.appservice.ServicePlan("example", {
name: "example-app-service-plan",
resourceGroupName: example.name,
location: example.location,
osType: "Windows",
skuName: "Y1",
});
const exampleWindowsFunctionApp = new azure.appservice.WindowsFunctionApp("example", {
name: "example-windows-function-app",
resourceGroupName: example.name,
location: example.location,
storageAccountName: exampleAccount.name,
servicePlanId: exampleServicePlan.id,
siteConfig: {},
});
const exampleWindowsFunctionAppSlot = new azure.appservice.WindowsFunctionAppSlot("example", {
name: "example-windows-function-app-slot",
functionAppId: exampleWindowsFunctionApp.id,
storageAccountName: exampleAccount.name,
siteConfig: {},
});
const exampleFunctionAppActiveSlot = new azure.appservice.FunctionAppActiveSlot("example", {slotId: exampleWindowsFunctionAppSlot.id});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_account = azure.storage.Account("example",
name="windowsfunctionappsa",
resource_group_name=example.name,
location=example.location,
account_tier="Standard",
account_replication_type="LRS")
example_service_plan = azure.appservice.ServicePlan("example",
name="example-app-service-plan",
resource_group_name=example.name,
location=example.location,
os_type="Windows",
sku_name="Y1")
example_windows_function_app = azure.appservice.WindowsFunctionApp("example",
name="example-windows-function-app",
resource_group_name=example.name,
location=example.location,
storage_account_name=example_account.name,
service_plan_id=example_service_plan.id,
site_config={})
example_windows_function_app_slot = azure.appservice.WindowsFunctionAppSlot("example",
name="example-windows-function-app-slot",
function_app_id=example_windows_function_app.id,
storage_account_name=example_account.name,
site_config={})
example_function_app_active_slot = azure.appservice.FunctionAppActiveSlot("example", slot_id=example_windows_function_app_slot.id)
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-azure/sdk/v6/go/azure/storage"
"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
}
exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
Name: pulumi.String("windowsfunctionappsa"),
ResourceGroupName: example.Name,
Location: example.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("LRS"),
})
if err != nil {
return err
}
exampleServicePlan, err := appservice.NewServicePlan(ctx, "example", &appservice.ServicePlanArgs{
Name: pulumi.String("example-app-service-plan"),
ResourceGroupName: example.Name,
Location: example.Location,
OsType: pulumi.String("Windows"),
SkuName: pulumi.String("Y1"),
})
if err != nil {
return err
}
exampleWindowsFunctionApp, err := appservice.NewWindowsFunctionApp(ctx, "example", &appservice.WindowsFunctionAppArgs{
Name: pulumi.String("example-windows-function-app"),
ResourceGroupName: example.Name,
Location: example.Location,
StorageAccountName: exampleAccount.Name,
ServicePlanId: exampleServicePlan.ID(),
SiteConfig: nil,
})
if err != nil {
return err
}
exampleWindowsFunctionAppSlot, err := appservice.NewWindowsFunctionAppSlot(ctx, "example", &appservice.WindowsFunctionAppSlotArgs{
Name: pulumi.String("example-windows-function-app-slot"),
FunctionAppId: exampleWindowsFunctionApp.ID(),
StorageAccountName: exampleAccount.Name,
SiteConfig: nil,
})
if err != nil {
return err
}
_, err = appservice.NewFunctionAppActiveSlot(ctx, "example", &appservice.FunctionAppActiveSlotArgs{
SlotId: exampleWindowsFunctionAppSlot.ID(),
})
if err != nil {
return err
}
return nil
})
}
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 exampleAccount = new Azure.Storage.Account("example", new()
{
Name = "windowsfunctionappsa",
ResourceGroupName = example.Name,
Location = example.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleServicePlan = new Azure.AppService.ServicePlan("example", new()
{
Name = "example-app-service-plan",
ResourceGroupName = example.Name,
Location = example.Location,
OsType = "Windows",
SkuName = "Y1",
});
var exampleWindowsFunctionApp = new Azure.AppService.WindowsFunctionApp("example", new()
{
Name = "example-windows-function-app",
ResourceGroupName = example.Name,
Location = example.Location,
StorageAccountName = exampleAccount.Name,
ServicePlanId = exampleServicePlan.Id,
SiteConfig = null,
});
var exampleWindowsFunctionAppSlot = new Azure.AppService.WindowsFunctionAppSlot("example", new()
{
Name = "example-windows-function-app-slot",
FunctionAppId = exampleWindowsFunctionApp.Id,
StorageAccountName = exampleAccount.Name,
SiteConfig = null,
});
var exampleFunctionAppActiveSlot = new Azure.AppService.FunctionAppActiveSlot("example", new()
{
SlotId = exampleWindowsFunctionAppSlot.Id,
});
});
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.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.appservice.ServicePlan;
import com.pulumi.azure.appservice.ServicePlanArgs;
import com.pulumi.azure.appservice.WindowsFunctionApp;
import com.pulumi.azure.appservice.WindowsFunctionAppArgs;
import com.pulumi.azure.appservice.inputs.WindowsFunctionAppSiteConfigArgs;
import com.pulumi.azure.appservice.WindowsFunctionAppSlot;
import com.pulumi.azure.appservice.WindowsFunctionAppSlotArgs;
import com.pulumi.azure.appservice.inputs.WindowsFunctionAppSlotSiteConfigArgs;
import com.pulumi.azure.appservice.FunctionAppActiveSlot;
import com.pulumi.azure.appservice.FunctionAppActiveSlotArgs;
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 exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("windowsfunctionappsa")
.resourceGroupName(example.name())
.location(example.location())
.accountTier("Standard")
.accountReplicationType("LRS")
.build());
var exampleServicePlan = new ServicePlan("exampleServicePlan", ServicePlanArgs.builder()
.name("example-app-service-plan")
.resourceGroupName(example.name())
.location(example.location())
.osType("Windows")
.skuName("Y1")
.build());
var exampleWindowsFunctionApp = new WindowsFunctionApp("exampleWindowsFunctionApp", WindowsFunctionAppArgs.builder()
.name("example-windows-function-app")
.resourceGroupName(example.name())
.location(example.location())
.storageAccountName(exampleAccount.name())
.servicePlanId(exampleServicePlan.id())
.siteConfig()
.build());
var exampleWindowsFunctionAppSlot = new WindowsFunctionAppSlot("exampleWindowsFunctionAppSlot", WindowsFunctionAppSlotArgs.builder()
.name("example-windows-function-app-slot")
.functionAppId(exampleWindowsFunctionApp.id())
.storageAccountName(exampleAccount.name())
.siteConfig()
.build());
var exampleFunctionAppActiveSlot = new FunctionAppActiveSlot("exampleFunctionAppActiveSlot", FunctionAppActiveSlotArgs.builder()
.slotId(exampleWindowsFunctionAppSlot.id())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleAccount:
type: azure:storage:Account
name: example
properties:
name: windowsfunctionappsa
resourceGroupName: ${example.name}
location: ${example.location}
accountTier: Standard
accountReplicationType: LRS
exampleServicePlan:
type: azure:appservice:ServicePlan
name: example
properties:
name: example-app-service-plan
resourceGroupName: ${example.name}
location: ${example.location}
osType: Windows
skuName: Y1
exampleWindowsFunctionApp:
type: azure:appservice:WindowsFunctionApp
name: example
properties:
name: example-windows-function-app
resourceGroupName: ${example.name}
location: ${example.location}
storageAccountName: ${exampleAccount.name}
servicePlanId: ${exampleServicePlan.id}
siteConfig: {}
exampleWindowsFunctionAppSlot:
type: azure:appservice:WindowsFunctionAppSlot
name: example
properties:
name: example-windows-function-app-slot
functionAppId: ${exampleWindowsFunctionApp.id}
storageAccountName: ${exampleAccount.name}
siteConfig: {}
exampleFunctionAppActiveSlot:
type: azure:appservice:FunctionAppActiveSlot
name: example
properties:
slotId: ${exampleWindowsFunctionAppSlot.id}
Linux Function App
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 exampleAccount = new azure.storage.Account("example", {
name: "linuxfunctionappsa",
resourceGroupName: example.name,
location: example.location,
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleServicePlan = new azure.appservice.ServicePlan("example", {
name: "example-app-service-plan",
resourceGroupName: example.name,
location: example.location,
osType: "Linux",
skuName: "Y1",
});
const exampleLinuxFunctionApp = new azure.appservice.LinuxFunctionApp("example", {
name: "example-linux-function-app",
resourceGroupName: example.name,
location: example.location,
servicePlanId: exampleServicePlan.id,
storageAccountName: exampleAccount.name,
siteConfig: {},
});
const exampleLinuxFunctionAppSlot = new azure.appservice.LinuxFunctionAppSlot("example", {
name: "example-linux-function-app-slot",
functionAppId: exampleLinuxFunctionApp.name,
storageAccountName: exampleAccount.name,
siteConfig: {},
});
const exampleFunctionAppActiveSlot = new azure.appservice.FunctionAppActiveSlot("example", {slotId: exampleLinuxFunctionAppSlot.id});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_account = azure.storage.Account("example",
name="linuxfunctionappsa",
resource_group_name=example.name,
location=example.location,
account_tier="Standard",
account_replication_type="LRS")
example_service_plan = azure.appservice.ServicePlan("example",
name="example-app-service-plan",
resource_group_name=example.name,
location=example.location,
os_type="Linux",
sku_name="Y1")
example_linux_function_app = azure.appservice.LinuxFunctionApp("example",
name="example-linux-function-app",
resource_group_name=example.name,
location=example.location,
service_plan_id=example_service_plan.id,
storage_account_name=example_account.name,
site_config={})
example_linux_function_app_slot = azure.appservice.LinuxFunctionAppSlot("example",
name="example-linux-function-app-slot",
function_app_id=example_linux_function_app.name,
storage_account_name=example_account.name,
site_config={})
example_function_app_active_slot = azure.appservice.FunctionAppActiveSlot("example", slot_id=example_linux_function_app_slot.id)
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-azure/sdk/v6/go/azure/storage"
"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
}
exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
Name: pulumi.String("linuxfunctionappsa"),
ResourceGroupName: example.Name,
Location: example.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("LRS"),
})
if err != nil {
return err
}
exampleServicePlan, err := appservice.NewServicePlan(ctx, "example", &appservice.ServicePlanArgs{
Name: pulumi.String("example-app-service-plan"),
ResourceGroupName: example.Name,
Location: example.Location,
OsType: pulumi.String("Linux"),
SkuName: pulumi.String("Y1"),
})
if err != nil {
return err
}
exampleLinuxFunctionApp, err := appservice.NewLinuxFunctionApp(ctx, "example", &appservice.LinuxFunctionAppArgs{
Name: pulumi.String("example-linux-function-app"),
ResourceGroupName: example.Name,
Location: example.Location,
ServicePlanId: exampleServicePlan.ID(),
StorageAccountName: exampleAccount.Name,
SiteConfig: nil,
})
if err != nil {
return err
}
exampleLinuxFunctionAppSlot, err := appservice.NewLinuxFunctionAppSlot(ctx, "example", &appservice.LinuxFunctionAppSlotArgs{
Name: pulumi.String("example-linux-function-app-slot"),
FunctionAppId: exampleLinuxFunctionApp.Name,
StorageAccountName: exampleAccount.Name,
SiteConfig: nil,
})
if err != nil {
return err
}
_, err = appservice.NewFunctionAppActiveSlot(ctx, "example", &appservice.FunctionAppActiveSlotArgs{
SlotId: exampleLinuxFunctionAppSlot.ID(),
})
if err != nil {
return err
}
return nil
})
}
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 exampleAccount = new Azure.Storage.Account("example", new()
{
Name = "linuxfunctionappsa",
ResourceGroupName = example.Name,
Location = example.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleServicePlan = new Azure.AppService.ServicePlan("example", new()
{
Name = "example-app-service-plan",
ResourceGroupName = example.Name,
Location = example.Location,
OsType = "Linux",
SkuName = "Y1",
});
var exampleLinuxFunctionApp = new Azure.AppService.LinuxFunctionApp("example", new()
{
Name = "example-linux-function-app",
ResourceGroupName = example.Name,
Location = example.Location,
ServicePlanId = exampleServicePlan.Id,
StorageAccountName = exampleAccount.Name,
SiteConfig = null,
});
var exampleLinuxFunctionAppSlot = new Azure.AppService.LinuxFunctionAppSlot("example", new()
{
Name = "example-linux-function-app-slot",
FunctionAppId = exampleLinuxFunctionApp.Name,
StorageAccountName = exampleAccount.Name,
SiteConfig = null,
});
var exampleFunctionAppActiveSlot = new Azure.AppService.FunctionAppActiveSlot("example", new()
{
SlotId = exampleLinuxFunctionAppSlot.Id,
});
});
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.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.appservice.ServicePlan;
import com.pulumi.azure.appservice.ServicePlanArgs;
import com.pulumi.azure.appservice.LinuxFunctionApp;
import com.pulumi.azure.appservice.LinuxFunctionAppArgs;
import com.pulumi.azure.appservice.inputs.LinuxFunctionAppSiteConfigArgs;
import com.pulumi.azure.appservice.LinuxFunctionAppSlot;
import com.pulumi.azure.appservice.LinuxFunctionAppSlotArgs;
import com.pulumi.azure.appservice.inputs.LinuxFunctionAppSlotSiteConfigArgs;
import com.pulumi.azure.appservice.FunctionAppActiveSlot;
import com.pulumi.azure.appservice.FunctionAppActiveSlotArgs;
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 exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("linuxfunctionappsa")
.resourceGroupName(example.name())
.location(example.location())
.accountTier("Standard")
.accountReplicationType("LRS")
.build());
var exampleServicePlan = new ServicePlan("exampleServicePlan", ServicePlanArgs.builder()
.name("example-app-service-plan")
.resourceGroupName(example.name())
.location(example.location())
.osType("Linux")
.skuName("Y1")
.build());
var exampleLinuxFunctionApp = new LinuxFunctionApp("exampleLinuxFunctionApp", LinuxFunctionAppArgs.builder()
.name("example-linux-function-app")
.resourceGroupName(example.name())
.location(example.location())
.servicePlanId(exampleServicePlan.id())
.storageAccountName(exampleAccount.name())
.siteConfig()
.build());
var exampleLinuxFunctionAppSlot = new LinuxFunctionAppSlot("exampleLinuxFunctionAppSlot", LinuxFunctionAppSlotArgs.builder()
.name("example-linux-function-app-slot")
.functionAppId(exampleLinuxFunctionApp.name())
.storageAccountName(exampleAccount.name())
.siteConfig()
.build());
var exampleFunctionAppActiveSlot = new FunctionAppActiveSlot("exampleFunctionAppActiveSlot", FunctionAppActiveSlotArgs.builder()
.slotId(exampleLinuxFunctionAppSlot.id())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleAccount:
type: azure:storage:Account
name: example
properties:
name: linuxfunctionappsa
resourceGroupName: ${example.name}
location: ${example.location}
accountTier: Standard
accountReplicationType: LRS
exampleServicePlan:
type: azure:appservice:ServicePlan
name: example
properties:
name: example-app-service-plan
resourceGroupName: ${example.name}
location: ${example.location}
osType: Linux
skuName: Y1
exampleLinuxFunctionApp:
type: azure:appservice:LinuxFunctionApp
name: example
properties:
name: example-linux-function-app
resourceGroupName: ${example.name}
location: ${example.location}
servicePlanId: ${exampleServicePlan.id}
storageAccountName: ${exampleAccount.name}
siteConfig: {}
exampleLinuxFunctionAppSlot:
type: azure:appservice:LinuxFunctionAppSlot
name: example
properties:
name: example-linux-function-app-slot
functionAppId: ${exampleLinuxFunctionApp.name}
storageAccountName: ${exampleAccount.name}
siteConfig: {}
exampleFunctionAppActiveSlot:
type: azure:appservice:FunctionAppActiveSlot
name: example
properties:
slotId: ${exampleLinuxFunctionAppSlot.id}
Create FunctionAppActiveSlot Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FunctionAppActiveSlot(name: string, args: FunctionAppActiveSlotArgs, opts?: CustomResourceOptions);
@overload
def FunctionAppActiveSlot(resource_name: str,
args: FunctionAppActiveSlotArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FunctionAppActiveSlot(resource_name: str,
opts: Optional[ResourceOptions] = None,
slot_id: Optional[str] = None,
overwrite_network_config: Optional[bool] = None)
func NewFunctionAppActiveSlot(ctx *Context, name string, args FunctionAppActiveSlotArgs, opts ...ResourceOption) (*FunctionAppActiveSlot, error)
public FunctionAppActiveSlot(string name, FunctionAppActiveSlotArgs args, CustomResourceOptions? opts = null)
public FunctionAppActiveSlot(String name, FunctionAppActiveSlotArgs args)
public FunctionAppActiveSlot(String name, FunctionAppActiveSlotArgs args, CustomResourceOptions options)
type: azure:appservice:FunctionAppActiveSlot
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 FunctionAppActiveSlotArgs
- 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 FunctionAppActiveSlotArgs
- 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 FunctionAppActiveSlotArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionAppActiveSlotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FunctionAppActiveSlotArgs
- 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 functionAppActiveSlotResource = new Azure.AppService.FunctionAppActiveSlot("functionAppActiveSlotResource", new()
{
SlotId = "string",
OverwriteNetworkConfig = false,
});
example, err := appservice.NewFunctionAppActiveSlot(ctx, "functionAppActiveSlotResource", &appservice.FunctionAppActiveSlotArgs{
SlotId: pulumi.String("string"),
OverwriteNetworkConfig: pulumi.Bool(false),
})
var functionAppActiveSlotResource = new FunctionAppActiveSlot("functionAppActiveSlotResource", FunctionAppActiveSlotArgs.builder()
.slotId("string")
.overwriteNetworkConfig(false)
.build());
function_app_active_slot_resource = azure.appservice.FunctionAppActiveSlot("functionAppActiveSlotResource",
slot_id="string",
overwrite_network_config=False)
const functionAppActiveSlotResource = new azure.appservice.FunctionAppActiveSlot("functionAppActiveSlotResource", {
slotId: "string",
overwriteNetworkConfig: false,
});
type: azure:appservice:FunctionAppActiveSlot
properties:
overwriteNetworkConfig: false
slotId: string
FunctionAppActiveSlot 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 FunctionAppActiveSlot resource accepts the following input properties:
- Slot
Id string - The ID of the Slot to swap with
Production
. - Overwrite
Network boolConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created.
- Slot
Id string - The ID of the Slot to swap with
Production
. - Overwrite
Network boolConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created.
- slot
Id String - The ID of the Slot to swap with
Production
. - overwrite
Network BooleanConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created.
- slot
Id string - The ID of the Slot to swap with
Production
. - overwrite
Network booleanConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created.
- slot_
id str - The ID of the Slot to swap with
Production
. - overwrite_
network_ boolconfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created.
- slot
Id String - The ID of the Slot to swap with
Production
. - overwrite
Network BooleanConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the FunctionAppActiveSlot resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Successful stringSwap - The timestamp of the last successful swap with
Production
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Successful stringSwap - The timestamp of the last successful swap with
Production
- id String
- The provider-assigned unique ID for this managed resource.
- last
Successful StringSwap - The timestamp of the last successful swap with
Production
- id string
- The provider-assigned unique ID for this managed resource.
- last
Successful stringSwap - The timestamp of the last successful swap with
Production
- id str
- The provider-assigned unique ID for this managed resource.
- last_
successful_ strswap - The timestamp of the last successful swap with
Production
- id String
- The provider-assigned unique ID for this managed resource.
- last
Successful StringSwap - The timestamp of the last successful swap with
Production
Look up Existing FunctionAppActiveSlot Resource
Get an existing FunctionAppActiveSlot resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FunctionAppActiveSlotState, opts?: CustomResourceOptions): FunctionAppActiveSlot
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
last_successful_swap: Optional[str] = None,
overwrite_network_config: Optional[bool] = None,
slot_id: Optional[str] = None) -> FunctionAppActiveSlot
func GetFunctionAppActiveSlot(ctx *Context, name string, id IDInput, state *FunctionAppActiveSlotState, opts ...ResourceOption) (*FunctionAppActiveSlot, error)
public static FunctionAppActiveSlot Get(string name, Input<string> id, FunctionAppActiveSlotState? state, CustomResourceOptions? opts = null)
public static FunctionAppActiveSlot get(String name, Output<String> id, FunctionAppActiveSlotState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Last
Successful stringSwap - The timestamp of the last successful swap with
Production
- Overwrite
Network boolConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created. - Slot
Id string - The ID of the Slot to swap with
Production
.
- Last
Successful stringSwap - The timestamp of the last successful swap with
Production
- Overwrite
Network boolConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created. - Slot
Id string - The ID of the Slot to swap with
Production
.
- last
Successful StringSwap - The timestamp of the last successful swap with
Production
- overwrite
Network BooleanConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created. - slot
Id String - The ID of the Slot to swap with
Production
.
- last
Successful stringSwap - The timestamp of the last successful swap with
Production
- overwrite
Network booleanConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created. - slot
Id string - The ID of the Slot to swap with
Production
.
- last_
successful_ strswap - The timestamp of the last successful swap with
Production
- overwrite_
network_ boolconfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created. - slot_
id str - The ID of the Slot to swap with
Production
.
- last
Successful StringSwap - The timestamp of the last successful swap with
Production
- overwrite
Network BooleanConfig - The swap action should overwrite the Production slot's network configuration with the configuration from this slot. Defaults to
true
. Changing this forces a new resource to be created. - slot
Id String - The ID of the Slot to swap with
Production
.
Import
a Function App Active Slot can be imported using the resource id
, e.g.
$ pulumi import azure:appservice/functionAppActiveSlot:FunctionAppActiveSlot example "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.