Fabric
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
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var primary = new Azure.Core.ResourceGroup("primary", new Azure.Core.ResourceGroupArgs
{
Location = "West US",
});
var secondary = new Azure.Core.ResourceGroup("secondary", new Azure.Core.ResourceGroupArgs
{
Location = "East US",
});
var vault = new Azure.RecoveryServices.Vault("vault", new Azure.RecoveryServices.VaultArgs
{
Location = secondary.Location,
ResourceGroupName = secondary.Name,
Sku = "Standard",
});
var fabric = new Azure.SiteRecovery.Fabric("fabric", new Azure.SiteRecovery.FabricArgs
{
ResourceGroupName = secondary.Name,
RecoveryVaultName = vault.Name,
Location = primary.Location,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/recoveryservices"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/siterecovery"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
primary, err := core.NewResourceGroup(ctx, "primary", &core.ResourceGroupArgs{
Location: pulumi.String("West US"),
})
if err != nil {
return err
}
secondary, err := core.NewResourceGroup(ctx, "secondary", &core.ResourceGroupArgs{
Location: pulumi.String("East US"),
})
if err != nil {
return err
}
vault, err := recoveryservices.NewVault(ctx, "vault", &recoveryservices.VaultArgs{
Location: secondary.Location,
ResourceGroupName: secondary.Name,
Sku: pulumi.String("Standard"),
})
if err != nil {
return err
}
_, err = siterecovery.NewFabric(ctx, "fabric", &siterecovery.FabricArgs{
ResourceGroupName: secondary.Name,
RecoveryVaultName: vault.Name,
Location: primary.Location,
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
primary = azure.core.ResourceGroup("primary", location="West US")
secondary = azure.core.ResourceGroup("secondary", location="East US")
vault = azure.recoveryservices.Vault("vault",
location=secondary.location,
resource_group_name=secondary.name,
sku="Standard")
fabric = azure.siterecovery.Fabric("fabric",
resource_group_name=secondary.name,
recovery_vault_name=vault.name,
location=primary.location)import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const primary = new azure.core.ResourceGroup("primary", {location: "West US"});
const secondary = new azure.core.ResourceGroup("secondary", {location: "East US"});
const vault = new azure.recoveryservices.Vault("vault", {
location: secondary.location,
resourceGroupName: secondary.name,
sku: "Standard",
});
const fabric = new azure.siterecovery.Fabric("fabric", {
resourceGroupName: secondary.name,
recoveryVaultName: vault.name,
location: primary.location,
});Create a Fabric Resource
new Fabric(name: string, args: FabricArgs, opts?: CustomResourceOptions);def Fabric(resource_name, opts=None, location=None, name=None, recovery_vault_name=None, resource_group_name=None, __props__=None);func NewFabric(ctx *Context, name string, args FabricArgs, opts ...ResourceOption) (*Fabric, error)public Fabric(string name, FabricArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args FabricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FabricArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FabricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Fabric Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Fabric resource accepts the following input properties:
- Recovery
Vault stringName The name of the vault that should be updated.
- Resource
Group stringName Name of the resource group where the vault that should be updated is located.
- Location string
In what region should the fabric be located.
- Name string
The name of the network mapping.
- Recovery
Vault stringName The name of the vault that should be updated.
- Resource
Group stringName Name of the resource group where the vault that should be updated is located.
- Location string
In what region should the fabric be located.
- Name string
The name of the network mapping.
- recovery
Vault stringName The name of the vault that should be updated.
- resource
Group stringName Name of the resource group where the vault that should be updated is located.
- location string
In what region should the fabric be located.
- name string
The name of the network mapping.
- recovery_
vault_ strname The name of the vault that should be updated.
- resource_
group_ strname Name of the resource group where the vault that should be updated is located.
- location str
In what region should the fabric be located.
- name str
The name of the network mapping.
Outputs
All input properties are implicitly available as output properties. Additionally, the Fabric resource produces the following output properties:
Look up an 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): Fabricstatic get(resource_name, id, opts=None, location=None, name=None, recovery_vault_name=None, resource_group_name=None, __props__=None);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)- 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.
The following state arguments are supported:
- Location string
In what region should the fabric be located.
- Name string
The name of the network mapping.
- Recovery
Vault stringName The name of the vault that should be updated.
- Resource
Group stringName Name of the resource group where the vault that should be updated is located.
- Location string
In what region should the fabric be located.
- Name string
The name of the network mapping.
- Recovery
Vault stringName The name of the vault that should be updated.
- Resource
Group stringName Name of the resource group where the vault that should be updated is located.
- location string
In what region should the fabric be located.
- name string
The name of the network mapping.
- recovery
Vault stringName The name of the vault that should be updated.
- resource
Group stringName Name of the resource group where the vault that should be updated is located.
- location str
In what region should the fabric be located.
- name str
The name of the network mapping.
- recovery_
vault_ strname The name of the vault that should be updated.
- resource_
group_ strname Name of the resource group where the vault that should be updated is located.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.