Skip to content

Commit

Permalink
Merge pull request #366 from jdno/fastly-zstd-logs
Browse files Browse the repository at this point in the history
Compress logs from Fastly using zstd
  • Loading branch information
jdno authored Dec 4, 2023
2 parents 22b1f7f + 21229de commit 5dcf7bf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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

0 comments on commit 5dcf7bf

Please sign in to comment.