Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compress logs from Fastly using zstd #366

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terragrunt/accounts/legacy/crates-io-prod/deployed-ref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a8f97344e0f86826150cd5ac4b292510e716e6bb
dd4723e1372b10b0f02f44b92c7427ba6f3408ab
2 changes: 1 addition & 1 deletion terragrunt/accounts/legacy/releases-prod/deployed-ref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
425e9f6311da6fd197f3b89e00bf583fba194465
dd4723e1372b10b0f02f44b92c7427ba6f3408ab
4 changes: 2 additions & 2 deletions terragrunt/modules/crates-io/fastly-static.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ resource "fastly_service_compute" "static" {
domain = "s3.us-west-1.amazonaws.com"
path = "/fastly-requests/${var.static_domain_name}/"

compression_codec = "gzip"
compression_codec = "zstd"
}

logging_s3 {
Expand All @@ -82,7 +82,7 @@ resource "fastly_service_compute" "static" {
domain = "s3.us-west-1.amazonaws.com"
path = "/fastly-logs/${var.static_domain_name}/"

compression_codec = "gzip"
compression_codec = "zstd"
}
}

Expand Down
2 changes: 1 addition & 1 deletion terragrunt/modules/release-distribution/fastly-static.tf
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ resource "fastly_service_vcl" "static" {
domain = "s3.us-west-1.amazonaws.com"
path = "/fastly-requests/${var.static_domain_name}/"

compression_codec = "gzip"
compression_codec = "zstd"
}
}

Expand Down