Terraform resource: aws glacier vault

From wikieduonline
(Redirected from AWS glacier vault)
Jump to navigation Jump to search

Official example[edit]

resource "aws_glacier_vault" "my_archive" {
  name = "MyArchive"

  notification {
    sns_topic = aws_sns_topic.aws_sns_topic.arn
    events    = ["ArchiveRetrievalCompleted", "InventoryRetrievalCompleted"]
  }

  access_policy = data.aws_iam_policy_document.my_archive.json

  tags = {
    Test = "MyArchive"
  }
}

Related[edit]


See also[edit]

Advertising: