glacier

S3 Glacier

StorageAWS
General

General information about the service.

Description

Amazon S3 Glacier provides low-cost archive storage for long-term data retention.

Service Namespace

AWS::S3::Bucket

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

glacier-

Length

3-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

global

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_s3_bucket" "archive" {
2 bucket = "glacier-${var.project}-${var.environment}"
3}
4
5resource "aws_s3_bucket_lifecycle_configuration" "archive" {
6 bucket = aws_s3_bucket.archive.id
7 rule {
8 id = "archive"
9 status = "Enabled"
10 transition {
11 days = 0
12 storage_class = "GLACIER"
13 }
14 }
15}
Utilities

Utilities to support app deployment or configuration.