--- layout: "aws" page_title: "AWS: aws_glacier_vault" sidebar_current: "docs-aws-resource-glacier-vault" description: |- Provides a Glacier Vault. --- # aws\_glacier\_vault Provides a Glacier Vault Resource. You can refer to the [Glacier Developer Guide](https://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-vaults.html) for a full explanation of the Glacier Vault functionality ~> **NOTE:** When removing a Glacier Vault, the Vault must be empty. ## Example Usage ``` resource "aws_sns_topic" "aws_sns_topic" { name = "glacier-sns-topic" } resource "aws_glacier_vault" "my_archive" { name = "MyArchive" notification { sns_topic = "${aws_sns_topic.aws_sns_topic.arn}" events = ["ArchiveRetrievalCompleted","InventoryRetrievalCompleted"] } access_policy = <