Vault

Manages an Recovery Services Vault.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var rg = new Azure.Core.ResourceGroup("rg", new Azure.Core.ResourceGroupArgs
        {
            Location = "West US",
        });
        var vault = new Azure.RecoveryServices.Vault("vault", new Azure.RecoveryServices.VaultArgs
        {
            Location = rg.Location,
            ResourceGroupName = rg.Name,
            Sku = "Standard",
            SoftDeleteEnabled = true,
        });
    }

}
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/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        rg, err := core.NewResourceGroup(ctx, "rg", &core.ResourceGroupArgs{
            Location: pulumi.String("West US"),
        })
        if err != nil {
            return err
        }
        _, err = recoveryservices.NewVault(ctx, "vault", &recoveryservices.VaultArgs{
            Location:          rg.Location,
            ResourceGroupName: rg.Name,
            Sku:               pulumi.String("Standard"),
            SoftDeleteEnabled: pulumi.Bool(true),
        })
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_azure as azure

rg = azure.core.ResourceGroup("rg", location="West US")
vault = azure.recoveryservices.Vault("vault",
    location=rg.location,
    resource_group_name=rg.name,
    sku="Standard",
    soft_delete_enabled=True)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const rg = new azure.core.ResourceGroup("rg", {location: "West US"});
const vault = new azure.recoveryservices.Vault("vault", {
    location: rg.location,
    resourceGroupName: rg.name,
    sku: "Standard",
    softDeleteEnabled: true,
});

Create a Vault Resource

new Vault(name: string, args: VaultArgs, opts?: CustomResourceOptions);
def Vault(resource_name, opts=None, location=None, name=None, resource_group_name=None, sku=None, soft_delete_enabled=None, tags=None, __props__=None);
func NewVault(ctx *Context, name string, args VaultArgs, opts ...ResourceOption) (*Vault, error)
public Vault(string name, VaultArgs args, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args VaultArgs
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 VaultArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args VaultArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

Vault Resource Properties

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

Inputs

The Vault resource accepts the following input properties:

ResourceGroupName string

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

Sku string

Sets the vault’s SKU. Possible values include: Standard, RS0.

Location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Name string

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

SoftDeleteEnabled bool

Is soft delete enable for this Vault? Defaults to true.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

ResourceGroupName string

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

Sku string

Sets the vault’s SKU. Possible values include: Standard, RS0.

Location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Name string

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

SoftDeleteEnabled bool

Is soft delete enable for this Vault? Defaults to true.

Tags map[string]string

A mapping of tags to assign to the resource.

resourceGroupName string

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

sku string

Sets the vault’s SKU. Possible values include: Standard, RS0.

location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

name string

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

softDeleteEnabled boolean

Is soft delete enable for this Vault? Defaults to true.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

resource_group_name str

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

sku str

Sets the vault’s SKU. Possible values include: Standard, RS0.

location str

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

name str

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

soft_delete_enabled bool

Is soft delete enable for this Vault? Defaults to true.

tags Dict[str, str]

A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the Vault 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 str
The provider-assigned unique ID for this managed resource.

Look up an Existing Vault Resource

Get an existing Vault 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?: VaultState, opts?: CustomResourceOptions): Vault
static get(resource_name, id, opts=None, location=None, name=None, resource_group_name=None, sku=None, soft_delete_enabled=None, tags=None, __props__=None);
func GetVault(ctx *Context, name string, id IDInput, state *VaultState, opts ...ResourceOption) (*Vault, error)
public static Vault Get(string name, Input<string> id, VaultState? 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

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Name string

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

Sku string

Sets the vault’s SKU. Possible values include: Standard, RS0.

SoftDeleteEnabled bool

Is soft delete enable for this Vault? Defaults to true.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

Location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Name string

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

Sku string

Sets the vault’s SKU. Possible values include: Standard, RS0.

SoftDeleteEnabled bool

Is soft delete enable for this Vault? Defaults to true.

Tags map[string]string

A mapping of tags to assign to the resource.

location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

name string

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

resourceGroupName string

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

sku string

Sets the vault’s SKU. Possible values include: Standard, RS0.

softDeleteEnabled boolean

Is soft delete enable for this Vault? Defaults to true.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

location str

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

name str

Specifies the name of the Recovery Services Vault. Changing this forces a new resource to be created.

resource_group_name str

The name of the resource group in which to create the Recovery Services Vault. Changing this forces a new resource to be created.

sku str

Sets the vault’s SKU. Possible values include: Standard, RS0.

soft_delete_enabled bool

Is soft delete enable for this Vault? Defaults to true.

tags Dict[str, str]

A mapping of tags to assign to the resource.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.