1. Packages
  2. Azure Classic
  3. API Docs
  4. siterecovery
  5. Fabric

We recommend using Azure Native.

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

azure.siterecovery.Fabric

Explore with Pulumi AI

Manages a Azure Site Recovery Replication Fabric within a Recovery Services vault. Only Azure fabrics are supported at this time. Replication Fabrics serve as a container within an Azure region for other Site Recovery resources such as protection containers, protected items, network mappings.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const primary = new azure.core.ResourceGroup("primary", {
    name: "tfex-network-mapping-primary",
    location: "West US",
});
const secondary = new azure.core.ResourceGroup("secondary", {
    name: "tfex-network-mapping-secondary",
    location: "East US",
});
const vault = new azure.recoveryservices.Vault("vault", {
    name: "example-recovery-vault",
    location: secondary.location,
    resourceGroupName: secondary.name,
    sku: "Standard",
});
const fabric = new azure.siterecovery.Fabric("fabric", {
    name: "primary-fabric",
    resourceGroupName: secondary.name,
    recoveryVaultName: vault.name,
    location: primary.location,
});
Copy
import pulumi
import pulumi_azure as azure

primary = azure.core.ResourceGroup("primary",
    name="tfex-network-mapping-primary",
    location="West US")
secondary = azure.core.ResourceGroup("secondary",
    name="tfex-network-mapping-secondary",
    location="East US")
vault = azure.recoveryservices.Vault("vault",
    name="example-recovery-vault",
    location=secondary.location,
    resource_group_name=secondary.name,
    sku="Standard")
fabric = azure.siterecovery.Fabric("fabric",
    name="primary-fabric",
    resource_group_name=secondary.name,
    recovery_vault_name=vault.name,
    location=primary.location)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/recoveryservices"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/siterecovery"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		primary, err := core.NewResourceGroup(ctx, "primary", &core.ResourceGroupArgs{
			Name:     pulumi.String("tfex-network-mapping-primary"),
			Location: pulumi.String("West US"),
		})
		if err != nil {
			return err
		}
		secondary, err := core.NewResourceGroup(ctx, "secondary", &core.ResourceGroupArgs{
			Name:     pulumi.String("tfex-network-mapping-secondary"),
			Location: pulumi.String("East US"),
		})
		if err != nil {
			return err
		}
		vault, err := recoveryservices.NewVault(ctx, "vault", &recoveryservices.VaultArgs{
			Name:              pulumi.String("example-recovery-vault"),
			Location:          secondary.Location,
			ResourceGroupName: secondary.Name,
			Sku:               pulumi.String("Standard"),
		})
		if err != nil {
			return err
		}
		_, err = siterecovery.NewFabric(ctx, "fabric", &siterecovery.FabricArgs{
			Name:              pulumi.String("primary-fabric"),
			ResourceGroupName: secondary.Name,
			RecoveryVaultName: vault.Name,
			Location:          primary.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 primary = new Azure.Core.ResourceGroup("primary", new()
    {
        Name = "tfex-network-mapping-primary",
        Location = "West US",
    });

    var secondary = new Azure.Core.ResourceGroup("secondary", new()
    {
        Name = "tfex-network-mapping-secondary",
        Location = "East US",
    });

    var vault = new Azure.RecoveryServices.Vault("vault", new()
    {
        Name = "example-recovery-vault",
        Location = secondary.Location,
        ResourceGroupName = secondary.Name,
        Sku = "Standard",
    });

    var fabric = new Azure.SiteRecovery.Fabric("fabric", new()
    {
        Name = "primary-fabric",
        ResourceGroupName = secondary.Name,
        RecoveryVaultName = vault.Name,
        Location = primary.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.recoveryservices.Vault;
import com.pulumi.azure.recoveryservices.VaultArgs;
import com.pulumi.azure.siterecovery.Fabric;
import com.pulumi.azure.siterecovery.FabricArgs;
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 primary = new ResourceGroup("primary", ResourceGroupArgs.builder()
            .name("tfex-network-mapping-primary")
            .location("West US")
            .build());

        var secondary = new ResourceGroup("secondary", ResourceGroupArgs.builder()
            .name("tfex-network-mapping-secondary")
            .location("East US")
            .build());

        var vault = new Vault("vault", VaultArgs.builder()
            .name("example-recovery-vault")
            .location(secondary.location())
            .resourceGroupName(secondary.name())
            .sku("Standard")
            .build());

        var fabric = new Fabric("fabric", FabricArgs.builder()
            .name("primary-fabric")
            .resourceGroupName(secondary.name())
            .recoveryVaultName(vault.name())
            .location(primary.location())
            .build());

    }
}
Copy
resources:
  primary:
    type: azure:core:ResourceGroup
    properties:
      name: tfex-network-mapping-primary
      location: West US
  secondary:
    type: azure:core:ResourceGroup
    properties:
      name: tfex-network-mapping-secondary
      location: East US
  vault:
    type: azure:recoveryservices:Vault
    properties:
      name: example-recovery-vault
      location: ${secondary.location}
      resourceGroupName: ${secondary.name}
      sku: Standard
  fabric:
    type: azure:siterecovery:Fabric
    properties:
      name: primary-fabric
      resourceGroupName: ${secondary.name}
      recoveryVaultName: ${vault.name}
      location: ${primary.location}
Copy

Create Fabric Resource

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

Constructor syntax

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

@overload
def Fabric(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           recovery_vault_name: Optional[str] = None,
           resource_group_name: Optional[str] = None,
           location: Optional[str] = None,
           name: Optional[str] = None)
func NewFabric(ctx *Context, name string, args FabricArgs, opts ...ResourceOption) (*Fabric, error)
public Fabric(string name, FabricArgs args, CustomResourceOptions? opts = null)
public Fabric(String name, FabricArgs args)
public Fabric(String name, FabricArgs args, CustomResourceOptions options)
type: azure:siterecovery:Fabric
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. FabricArgs
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. FabricArgs
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. FabricArgs
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. FabricArgs
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. FabricArgs
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 fabricResource = new Azure.SiteRecovery.Fabric("fabricResource", new()
{
    RecoveryVaultName = "string",
    ResourceGroupName = "string",
    Location = "string",
    Name = "string",
});
Copy
example, err := siterecovery.NewFabric(ctx, "fabricResource", &siterecovery.FabricArgs{
	RecoveryVaultName: pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Location:          pulumi.String("string"),
	Name:              pulumi.String("string"),
})
Copy
var fabricResource = new Fabric("fabricResource", FabricArgs.builder()
    .recoveryVaultName("string")
    .resourceGroupName("string")
    .location("string")
    .name("string")
    .build());
Copy
fabric_resource = azure.siterecovery.Fabric("fabricResource",
    recovery_vault_name="string",
    resource_group_name="string",
    location="string",
    name="string")
Copy
const fabricResource = new azure.siterecovery.Fabric("fabricResource", {
    recoveryVaultName: "string",
    resourceGroupName: "string",
    location: "string",
    name: "string",
});
Copy
type: azure:siterecovery:Fabric
properties:
    location: string
    name: string
    recoveryVaultName: string
    resourceGroupName: string
Copy

Fabric 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 Fabric resource accepts the following input properties:

RecoveryVaultName
This property is required.
Changes to this property will trigger replacement.
string
The name of the vault that should be updated. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
In what region should the fabric be located. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the network mapping. Changing this forces a new resource to be created.
RecoveryVaultName
This property is required.
Changes to this property will trigger replacement.
string
The name of the vault that should be updated. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
In what region should the fabric be located. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the network mapping. Changing this forces a new resource to be created.
recoveryVaultName
This property is required.
Changes to this property will trigger replacement.
String
The name of the vault that should be updated. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the network mapping. Changing this forces a new resource to be created.
recoveryVaultName
This property is required.
Changes to this property will trigger replacement.
string
The name of the vault that should be updated. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name of the network mapping. Changing this forces a new resource to be created.
recovery_vault_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the vault that should be updated. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name of the network mapping. Changing this forces a new resource to be created.
recoveryVaultName
This property is required.
Changes to this property will trigger replacement.
String
The name of the vault that should be updated. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the network mapping. Changing this forces a new resource to be created.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Fabric Resource

Get an existing Fabric 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?: FabricState, opts?: CustomResourceOptions): Fabric
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        recovery_vault_name: Optional[str] = None,
        resource_group_name: Optional[str] = None) -> Fabric
func GetFabric(ctx *Context, name string, id IDInput, state *FabricState, opts ...ResourceOption) (*Fabric, error)
public static Fabric Get(string name, Input<string> id, FabricState? state, CustomResourceOptions? opts = null)
public static Fabric get(String name, Output<String> id, FabricState state, CustomResourceOptions options)
resources:  _:    type: azure:siterecovery:Fabric    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:
Location Changes to this property will trigger replacement. string
In what region should the fabric be located. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the network mapping. Changing this forces a new resource to be created.
RecoveryVaultName Changes to this property will trigger replacement. string
The name of the vault that should be updated. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
In what region should the fabric be located. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the network mapping. Changing this forces a new resource to be created.
RecoveryVaultName Changes to this property will trigger replacement. string
The name of the vault that should be updated. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the network mapping. Changing this forces a new resource to be created.
recoveryVaultName Changes to this property will trigger replacement. String
The name of the vault that should be updated. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name of the network mapping. Changing this forces a new resource to be created.
recoveryVaultName Changes to this property will trigger replacement. string
The name of the vault that should be updated. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. string
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name of the network mapping. Changing this forces a new resource to be created.
recovery_vault_name Changes to this property will trigger replacement. str
The name of the vault that should be updated. Changing this forces a new resource to be created.
resource_group_name Changes to this property will trigger replacement. str
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
In what region should the fabric be located. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the network mapping. Changing this forces a new resource to be created.
recoveryVaultName Changes to this property will trigger replacement. String
The name of the vault that should be updated. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created.

Import

Site Recovery Fabric can be imported using the resource id, e.g.

$ pulumi import azure:siterecovery/fabric:Fabric myfabric /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group-name/providers/Microsoft.RecoveryServices/vaults/recovery-vault-name/replicationFabrics/fabric-name
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.