1. Packages
  2. AWS
  3. API Docs
  4. glacier
  5. Vault
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.glacier.Vault

Explore with Pulumi AI

Provides a Glacier Vault Resource. You can refer to the Glacier Developer Guide for a full explanation of the Glacier Vault functionality

NOTE: When removing a Glacier Vault, the Vault must be empty.

Example Usage

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

const awsSnsTopic = new aws.sns.Topic("aws_sns_topic", {name: "glacier-sns-topic"});
const myArchive = aws.iam.getPolicyDocument({
    statements: [{
        sid: "add-read-only-perm",
        effect: "Allow",
        principals: [{
            type: "*",
            identifiers: ["*"],
        }],
        actions: [
            "glacier:InitiateJob",
            "glacier:GetJobOutput",
        ],
        resources: ["arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive"],
    }],
});
const myArchiveVault = new aws.glacier.Vault("my_archive", {
    name: "MyArchive",
    notification: {
        snsTopic: awsSnsTopic.arn,
        events: [
            "ArchiveRetrievalCompleted",
            "InventoryRetrievalCompleted",
        ],
    },
    accessPolicy: myArchive.then(myArchive => myArchive.json),
    tags: {
        Test: "MyArchive",
    },
});
Copy
import pulumi
import pulumi_aws as aws

aws_sns_topic = aws.sns.Topic("aws_sns_topic", name="glacier-sns-topic")
my_archive = aws.iam.get_policy_document(statements=[{
    "sid": "add-read-only-perm",
    "effect": "Allow",
    "principals": [{
        "type": "*",
        "identifiers": ["*"],
    }],
    "actions": [
        "glacier:InitiateJob",
        "glacier:GetJobOutput",
    ],
    "resources": ["arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive"],
}])
my_archive_vault = aws.glacier.Vault("my_archive",
    name="MyArchive",
    notification={
        "sns_topic": aws_sns_topic.arn,
        "events": [
            "ArchiveRetrievalCompleted",
            "InventoryRetrievalCompleted",
        ],
    },
    access_policy=my_archive.json,
    tags={
        "Test": "MyArchive",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/glacier"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sns"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		awsSnsTopic, err := sns.NewTopic(ctx, "aws_sns_topic", &sns.TopicArgs{
			Name: pulumi.String("glacier-sns-topic"),
		})
		if err != nil {
			return err
		}
		myArchive, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
			Statements: []iam.GetPolicyDocumentStatement{
				{
					Sid:    pulumi.StringRef("add-read-only-perm"),
					Effect: pulumi.StringRef("Allow"),
					Principals: []iam.GetPolicyDocumentStatementPrincipal{
						{
							Type: "*",
							Identifiers: []string{
								"*",
							},
						},
					},
					Actions: []string{
						"glacier:InitiateJob",
						"glacier:GetJobOutput",
					},
					Resources: []string{
						"arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive",
					},
				},
			},
		}, nil)
		if err != nil {
			return err
		}
		_, err = glacier.NewVault(ctx, "my_archive", &glacier.VaultArgs{
			Name: pulumi.String("MyArchive"),
			Notification: &glacier.VaultNotificationArgs{
				SnsTopic: awsSnsTopic.Arn,
				Events: pulumi.StringArray{
					pulumi.String("ArchiveRetrievalCompleted"),
					pulumi.String("InventoryRetrievalCompleted"),
				},
			},
			AccessPolicy: pulumi.String(myArchive.Json),
			Tags: pulumi.StringMap{
				"Test": pulumi.String("MyArchive"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var awsSnsTopic = new Aws.Sns.Topic("aws_sns_topic", new()
    {
        Name = "glacier-sns-topic",
    });

    var myArchive = Aws.Iam.GetPolicyDocument.Invoke(new()
    {
        Statements = new[]
        {
            new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
            {
                Sid = "add-read-only-perm",
                Effect = "Allow",
                Principals = new[]
                {
                    new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                    {
                        Type = "*",
                        Identifiers = new[]
                        {
                            "*",
                        },
                    },
                },
                Actions = new[]
                {
                    "glacier:InitiateJob",
                    "glacier:GetJobOutput",
                },
                Resources = new[]
                {
                    "arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive",
                },
            },
        },
    });

    var myArchiveVault = new Aws.Glacier.Vault("my_archive", new()
    {
        Name = "MyArchive",
        Notification = new Aws.Glacier.Inputs.VaultNotificationArgs
        {
            SnsTopic = awsSnsTopic.Arn,
            Events = new[]
            {
                "ArchiveRetrievalCompleted",
                "InventoryRetrievalCompleted",
            },
        },
        AccessPolicy = myArchive.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
        Tags = 
        {
            { "Test", "MyArchive" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sns.Topic;
import com.pulumi.aws.sns.TopicArgs;
import com.pulumi.aws.iam.IamFunctions;
import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
import com.pulumi.aws.glacier.Vault;
import com.pulumi.aws.glacier.VaultArgs;
import com.pulumi.aws.glacier.inputs.VaultNotificationArgs;
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 awsSnsTopic = new Topic("awsSnsTopic", TopicArgs.builder()
            .name("glacier-sns-topic")
            .build());

        final var myArchive = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
            .statements(GetPolicyDocumentStatementArgs.builder()
                .sid("add-read-only-perm")
                .effect("Allow")
                .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                    .type("*")
                    .identifiers("*")
                    .build())
                .actions(                
                    "glacier:InitiateJob",
                    "glacier:GetJobOutput")
                .resources("arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive")
                .build())
            .build());

        var myArchiveVault = new Vault("myArchiveVault", VaultArgs.builder()
            .name("MyArchive")
            .notification(VaultNotificationArgs.builder()
                .snsTopic(awsSnsTopic.arn())
                .events(                
                    "ArchiveRetrievalCompleted",
                    "InventoryRetrievalCompleted")
                .build())
            .accessPolicy(myArchive.json())
            .tags(Map.of("Test", "MyArchive"))
            .build());

    }
}
Copy
resources:
  awsSnsTopic:
    type: aws:sns:Topic
    name: aws_sns_topic
    properties:
      name: glacier-sns-topic
  myArchiveVault:
    type: aws:glacier:Vault
    name: my_archive
    properties:
      name: MyArchive
      notification:
        snsTopic: ${awsSnsTopic.arn}
        events:
          - ArchiveRetrievalCompleted
          - InventoryRetrievalCompleted
      accessPolicy: ${myArchive.json}
      tags:
        Test: MyArchive
variables:
  myArchive:
    fn::invoke:
      function: aws:iam:getPolicyDocument
      arguments:
        statements:
          - sid: add-read-only-perm
            effect: Allow
            principals:
              - type: '*'
                identifiers:
                  - '*'
            actions:
              - glacier:InitiateJob
              - glacier:GetJobOutput
            resources:
              - arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive
Copy

Create Vault Resource

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

Constructor syntax

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

@overload
def Vault(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          access_policy: Optional[str] = None,
          name: Optional[str] = None,
          notification: Optional[VaultNotificationArgs] = None,
          tags: Optional[Mapping[str, str]] = None)
func NewVault(ctx *Context, name string, args *VaultArgs, opts ...ResourceOption) (*Vault, error)
public Vault(string name, VaultArgs? args = null, CustomResourceOptions? opts = null)
public Vault(String name, VaultArgs args)
public Vault(String name, VaultArgs args, CustomResourceOptions options)
type: aws:glacier:Vault
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 VaultArgs
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 VaultArgs
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 VaultArgs
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 VaultArgs
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. VaultArgs
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 awsVaultResource = new Aws.Glacier.Vault("awsVaultResource", new()
{
    AccessPolicy = "string",
    Name = "string",
    Notification = new Aws.Glacier.Inputs.VaultNotificationArgs
    {
        Events = new[]
        {
            "string",
        },
        SnsTopic = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := glacier.NewVault(ctx, "awsVaultResource", &glacier.VaultArgs{
	AccessPolicy: pulumi.String("string"),
	Name:         pulumi.String("string"),
	Notification: &glacier.VaultNotificationArgs{
		Events: pulumi.StringArray{
			pulumi.String("string"),
		},
		SnsTopic: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var awsVaultResource = new Vault("awsVaultResource", VaultArgs.builder()
    .accessPolicy("string")
    .name("string")
    .notification(VaultNotificationArgs.builder()
        .events("string")
        .snsTopic("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
aws_vault_resource = aws.glacier.Vault("awsVaultResource",
    access_policy="string",
    name="string",
    notification={
        "events": ["string"],
        "sns_topic": "string",
    },
    tags={
        "string": "string",
    })
Copy
const awsVaultResource = new aws.glacier.Vault("awsVaultResource", {
    accessPolicy: "string",
    name: "string",
    notification: {
        events: ["string"],
        snsTopic: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: aws:glacier:Vault
properties:
    accessPolicy: string
    name: string
    notification:
        events:
            - string
        snsTopic: string
    tags:
        string: string
Copy

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

AccessPolicy string
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
Name Changes to this property will trigger replacement. string
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
Notification VaultNotification
The notifications for the Vault. Fields documented below.
Tags Dictionary<string, string>
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
AccessPolicy string
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
Name Changes to this property will trigger replacement. string
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
Notification VaultNotificationArgs
The notifications for the Vault. Fields documented below.
Tags map[string]string
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
accessPolicy String
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
name Changes to this property will trigger replacement. String
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification VaultNotification
The notifications for the Vault. Fields documented below.
tags Map<String,String>
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
accessPolicy string
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
name Changes to this property will trigger replacement. string
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification VaultNotification
The notifications for the Vault. Fields documented below.
tags {[key: string]: string}
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
access_policy str
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
name Changes to this property will trigger replacement. str
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification VaultNotificationArgs
The notifications for the Vault. Fields documented below.
tags Mapping[str, str]
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
accessPolicy String
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
name Changes to this property will trigger replacement. String
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification Property Map
The notifications for the Vault. Fields documented below.
tags Map<String>
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

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

Arn string
The ARN of the vault.
Id string
The provider-assigned unique ID for this managed resource.
Location string
The URI of the vault that was created.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The ARN of the vault.
Id string
The provider-assigned unique ID for this managed resource.
Location string
The URI of the vault that was created.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the vault.
id String
The provider-assigned unique ID for this managed resource.
location String
The URI of the vault that was created.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The ARN of the vault.
id string
The provider-assigned unique ID for this managed resource.
location string
The URI of the vault that was created.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The ARN of the vault.
id str
The provider-assigned unique ID for this managed resource.
location str
The URI of the vault that was created.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the vault.
id String
The provider-assigned unique ID for this managed resource.
location String
The URI of the vault that was created.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up 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
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_policy: Optional[str] = None,
        arn: Optional[str] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        notification: Optional[VaultNotificationArgs] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> Vault
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)
public static Vault get(String name, Output<String> id, VaultState state, CustomResourceOptions options)
resources:  _:    type: aws:glacier:Vault    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:
AccessPolicy string
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
Arn string
The ARN of the vault.
Location string
The URI of the vault that was created.
Name Changes to this property will trigger replacement. string
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
Notification VaultNotification
The notifications for the Vault. Fields documented below.
Tags Dictionary<string, string>
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

AccessPolicy string
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
Arn string
The ARN of the vault.
Location string
The URI of the vault that was created.
Name Changes to this property will trigger replacement. string
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
Notification VaultNotificationArgs
The notifications for the Vault. Fields documented below.
Tags map[string]string
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

accessPolicy String
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
arn String
The ARN of the vault.
location String
The URI of the vault that was created.
name Changes to this property will trigger replacement. String
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification VaultNotification
The notifications for the Vault. Fields documented below.
tags Map<String,String>
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

accessPolicy string
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
arn string
The ARN of the vault.
location string
The URI of the vault that was created.
name Changes to this property will trigger replacement. string
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification VaultNotification
The notifications for the Vault. Fields documented below.
tags {[key: string]: string}
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

access_policy str
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
arn str
The ARN of the vault.
location str
The URI of the vault that was created.
name Changes to this property will trigger replacement. str
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification VaultNotificationArgs
The notifications for the Vault. Fields documented below.
tags Mapping[str, str]
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

accessPolicy String
The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
arn String
The ARN of the vault.
location String
The URI of the vault that was created.
name Changes to this property will trigger replacement. String
The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
notification Property Map
The notifications for the Vault. Fields documented below.
tags Map<String>
A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Supporting Types

VaultNotification
, VaultNotificationArgs

Events This property is required. List<string>
You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
SnsTopic This property is required. string
The SNS Topic ARN.
Events This property is required. []string
You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
SnsTopic This property is required. string
The SNS Topic ARN.
events This property is required. List<String>
You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
snsTopic This property is required. String
The SNS Topic ARN.
events This property is required. string[]
You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
snsTopic This property is required. string
The SNS Topic ARN.
events This property is required. Sequence[str]
You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
sns_topic This property is required. str
The SNS Topic ARN.
events This property is required. List<String>
You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
snsTopic This property is required. String
The SNS Topic ARN.

Import

Using pulumi import, import Glacier Vaults using the name. For example:

$ pulumi import aws:glacier/vault:Vault archive my_archive
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.