1. Packages
  2. Azure Classic
  3. API Docs
  4. appservice
  5. StaticSite

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.appservice.StaticSite

Explore with Pulumi AI

Manages an App Service Static Site.

NOTE: The azure.appservice.StaticSite resource is deprecated in favour of azure.appservice.StaticWebApp and will be removed in a future major release.

->NOTE: After the Static Site is provisioned, you’ll need to associate your target repository, which contains your web app, to the Static Site, by following the Azure Static Site document.

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 exampleStaticSite = new azure.appservice.StaticSite("example", {
    name: "example",
    resourceGroupName: example.name,
    location: example.location,
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_static_site = azure.appservice.StaticSite("example",
    name="example",
    resource_group_name=example.name,
    location=example.location)
Copy
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
		}
		_, err = appservice.NewStaticSite(ctx, "example", &appservice.StaticSiteArgs{
			Name:              pulumi.String("example"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 exampleStaticSite = new Azure.AppService.StaticSite("example", new()
    {
        Name = "example",
        ResourceGroupName = example.Name,
        Location = example.Location,
    });

});
Copy
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.StaticSite;
import com.pulumi.azure.appservice.StaticSiteArgs;
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 exampleStaticSite = new StaticSite("exampleStaticSite", StaticSiteArgs.builder()
            .name("example")
            .resourceGroupName(example.name())
            .location(example.location())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleStaticSite:
    type: azure:appservice:StaticSite
    name: example
    properties:
      name: example
      resourceGroupName: ${example.name}
      location: ${example.location}
Copy

Create StaticSite Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new StaticSite(name: string, args: StaticSiteArgs, opts?: CustomResourceOptions);
@overload
def StaticSite(resource_name: str,
               args: StaticSiteArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def StaticSite(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_group_name: Optional[str] = None,
               app_settings: Optional[Mapping[str, str]] = None,
               identity: Optional[StaticSiteIdentityArgs] = None,
               location: Optional[str] = None,
               name: Optional[str] = None,
               sku_size: Optional[str] = None,
               sku_tier: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None)
func NewStaticSite(ctx *Context, name string, args StaticSiteArgs, opts ...ResourceOption) (*StaticSite, error)
public StaticSite(string name, StaticSiteArgs args, CustomResourceOptions? opts = null)
public StaticSite(String name, StaticSiteArgs args)
public StaticSite(String name, StaticSiteArgs args, CustomResourceOptions options)
type: azure:appservice:StaticSite
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StaticSiteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StaticSiteArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StaticSiteArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StaticSiteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StaticSiteArgs
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 staticSiteResource = new Azure.AppService.StaticSite("staticSiteResource", new()
{
    ResourceGroupName = "string",
    AppSettings = 
    {
        { "string", "string" },
    },
    Identity = new Azure.AppService.Inputs.StaticSiteIdentityArgs
    {
        Type = "string",
        IdentityIds = new[]
        {
            "string",
        },
        PrincipalId = "string",
        TenantId = "string",
    },
    Location = "string",
    Name = "string",
    SkuSize = "string",
    SkuTier = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := appservice.NewStaticSite(ctx, "staticSiteResource", &appservice.StaticSiteArgs{
	ResourceGroupName: pulumi.String("string"),
	AppSettings: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Identity: &appservice.StaticSiteIdentityArgs{
		Type: pulumi.String("string"),
		IdentityIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		PrincipalId: pulumi.String("string"),
		TenantId:    pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Name:     pulumi.String("string"),
	SkuSize:  pulumi.String("string"),
	SkuTier:  pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var staticSiteResource = new StaticSite("staticSiteResource", StaticSiteArgs.builder()
    .resourceGroupName("string")
    .appSettings(Map.of("string", "string"))
    .identity(StaticSiteIdentityArgs.builder()
        .type("string")
        .identityIds("string")
        .principalId("string")
        .tenantId("string")
        .build())
    .location("string")
    .name("string")
    .skuSize("string")
    .skuTier("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
static_site_resource = azure.appservice.StaticSite("staticSiteResource",
    resource_group_name="string",
    app_settings={
        "string": "string",
    },
    identity={
        "type": "string",
        "identity_ids": ["string"],
        "principal_id": "string",
        "tenant_id": "string",
    },
    location="string",
    name="string",
    sku_size="string",
    sku_tier="string",
    tags={
        "string": "string",
    })
Copy
const staticSiteResource = new azure.appservice.StaticSite("staticSiteResource", {
    resourceGroupName: "string",
    appSettings: {
        string: "string",
    },
    identity: {
        type: "string",
        identityIds: ["string"],
        principalId: "string",
        tenantId: "string",
    },
    location: "string",
    name: "string",
    skuSize: "string",
    skuTier: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:appservice:StaticSite
properties:
    appSettings:
        string: string
    identity:
        identityIds:
            - string
        principalId: string
        tenantId: string
        type: string
    location: string
    name: string
    resourceGroupName: string
    skuSize: string
    skuTier: string
    tags:
        string: string
Copy

StaticSite Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The StaticSite resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
AppSettings Dictionary<string, string>
A key-value pair of App Settings.
Identity StaticSiteIdentity
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
SkuSize string
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
SkuTier string
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
AppSettings map[string]string
A key-value pair of App Settings.
Identity StaticSiteIdentityArgs
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
SkuSize string
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
SkuTier string
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
Tags map[string]string
A mapping of tags to assign to the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
appSettings Map<String,String>
A key-value pair of App Settings.
identity StaticSiteIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
skuSize String
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
skuTier String
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags Map<String,String>
A mapping of tags to assign to the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
appSettings {[key: string]: string}
A key-value pair of App Settings.
identity StaticSiteIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. string
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
skuSize string
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
skuTier string
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
app_settings Mapping[str, str]
A key-value pair of App Settings.
identity StaticSiteIdentityArgs
An identity block as defined below.
location Changes to this property will trigger replacement. str
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
sku_size str
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
sku_tier str
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
appSettings Map<String>
A key-value pair of App Settings.
identity Property Map
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
skuSize String
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
skuTier String
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags Map<String>
A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the StaticSite resource produces the following output properties:

ApiKey string
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
DefaultHostName string
The default host name of the Static Web App.
Id string
The provider-assigned unique ID for this managed resource.
ApiKey string
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
DefaultHostName string
The default host name of the Static Web App.
Id string
The provider-assigned unique ID for this managed resource.
apiKey String
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
defaultHostName String
The default host name of the Static Web App.
id String
The provider-assigned unique ID for this managed resource.
apiKey string
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
defaultHostName string
The default host name of the Static Web App.
id string
The provider-assigned unique ID for this managed resource.
api_key str
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
default_host_name str
The default host name of the Static Web App.
id str
The provider-assigned unique ID for this managed resource.
apiKey String
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
defaultHostName String
The default host name of the Static Web App.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing StaticSite Resource

Get an existing StaticSite 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?: StaticSiteState, opts?: CustomResourceOptions): StaticSite
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        api_key: Optional[str] = None,
        app_settings: Optional[Mapping[str, str]] = None,
        default_host_name: Optional[str] = None,
        identity: Optional[StaticSiteIdentityArgs] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        sku_size: Optional[str] = None,
        sku_tier: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> StaticSite
func GetStaticSite(ctx *Context, name string, id IDInput, state *StaticSiteState, opts ...ResourceOption) (*StaticSite, error)
public static StaticSite Get(string name, Input<string> id, StaticSiteState? state, CustomResourceOptions? opts = null)
public static StaticSite get(String name, Output<String> id, StaticSiteState state, CustomResourceOptions options)
resources:  _:    type: azure:appservice:StaticSite    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
ApiKey string
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
AppSettings Dictionary<string, string>
A key-value pair of App Settings.
DefaultHostName string
The default host name of the Static Web App.
Identity StaticSiteIdentity
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
SkuSize string
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
SkuTier string
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
ApiKey string
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
AppSettings map[string]string
A key-value pair of App Settings.
DefaultHostName string
The default host name of the Static Web App.
Identity StaticSiteIdentityArgs
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
SkuSize string
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
SkuTier string
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
Tags map[string]string
A mapping of tags to assign to the resource.
apiKey String
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
appSettings Map<String,String>
A key-value pair of App Settings.
defaultHostName String
The default host name of the Static Web App.
identity StaticSiteIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
skuSize String
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
skuTier String
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags Map<String,String>
A mapping of tags to assign to the resource.
apiKey string
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
appSettings {[key: string]: string}
A key-value pair of App Settings.
defaultHostName string
The default host name of the Static Web App.
identity StaticSiteIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. string
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
skuSize string
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
skuTier string
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
api_key str
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
app_settings Mapping[str, str]
A key-value pair of App Settings.
default_host_name str
The default host name of the Static Web App.
identity StaticSiteIdentityArgs
An identity block as defined below.
location Changes to this property will trigger replacement. str
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
sku_size str
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
sku_tier str
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
apiKey String
The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
appSettings Map<String>
A key-value pair of App Settings.
defaultHostName String
The default host name of the Static Web App.
identity Property Map
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
skuSize String
Specifies the SKU size of the Static Web App. Possible values are Free or Standard. Defaults to Free.
skuTier String
Specifies the SKU tier of the Static Web App. Possible values are Free or Standard. Defaults to Free.
tags Map<String>
A mapping of tags to assign to the resource.

Supporting Types

StaticSiteIdentity
, StaticSiteIdentityArgs

Type This property is required. string
The Type of Managed Identity assigned to this Static Site resource. Possible values are SystemAssigned, UserAssigned and SystemAssigned, UserAssigned.
IdentityIds List<string>
A list of Managed Identity IDs which should be assigned to this Static Site resource.
PrincipalId string
(Optional) The Principal ID associated with this Managed Service Identity.
TenantId string
Type This property is required. string
The Type of Managed Identity assigned to this Static Site resource. Possible values are SystemAssigned, UserAssigned and SystemAssigned, UserAssigned.
IdentityIds []string
A list of Managed Identity IDs which should be assigned to this Static Site resource.
PrincipalId string
(Optional) The Principal ID associated with this Managed Service Identity.
TenantId string
type This property is required. String
The Type of Managed Identity assigned to this Static Site resource. Possible values are SystemAssigned, UserAssigned and SystemAssigned, UserAssigned.
identityIds List<String>
A list of Managed Identity IDs which should be assigned to this Static Site resource.
principalId String
(Optional) The Principal ID associated with this Managed Service Identity.
tenantId String
type This property is required. string
The Type of Managed Identity assigned to this Static Site resource. Possible values are SystemAssigned, UserAssigned and SystemAssigned, UserAssigned.
identityIds string[]
A list of Managed Identity IDs which should be assigned to this Static Site resource.
principalId string
(Optional) The Principal ID associated with this Managed Service Identity.
tenantId string
type This property is required. str
The Type of Managed Identity assigned to this Static Site resource. Possible values are SystemAssigned, UserAssigned and SystemAssigned, UserAssigned.
identity_ids Sequence[str]
A list of Managed Identity IDs which should be assigned to this Static Site resource.
principal_id str
(Optional) The Principal ID associated with this Managed Service Identity.
tenant_id str
type This property is required. String
The Type of Managed Identity assigned to this Static Site resource. Possible values are SystemAssigned, UserAssigned and SystemAssigned, UserAssigned.
identityIds List<String>
A list of Managed Identity IDs which should be assigned to this Static Site resource.
principalId String
(Optional) The Principal ID associated with this Managed Service Identity.
tenantId String

Import

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

$ pulumi import azure:appservice/staticSite:StaticSite example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Web/staticSites/my-static-site1
Copy

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.