glacier
S3 Glacier
StorageAWS
General
General information about the service.
Chat
Powered by AITalk 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 Documentation
terraform
1resource "aws_s3_bucket" "archive" {2 bucket = "glacier-${var.project}-${var.environment}"3}45resource "aws_s3_bucket_lifecycle_configuration" "archive" {6 bucket = aws_s3_bucket.archive.id7 rule {8 id = "archive"9 status = "Enabled"10 transition {11 days = 012 storage_class = "GLACIER"13 }14 }15}
Utilities
Utilities to support app deployment or configuration.