mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
16c5823692
* add support for minio backend file carving * add changes file Co-authored-by: Zach Wasserman <zach@fleetdm.com>
20 lines
377 B
HCL
20 lines
377 B
HCL
// file carving destination
|
|
resource "aws_s3_bucket" "osquery-carve" {
|
|
bucket = "osquery-carve-${terraform.workspace}"
|
|
acl = "private"
|
|
|
|
lifecycle_rule {
|
|
enabled = true
|
|
expiration {
|
|
days = 7
|
|
}
|
|
}
|
|
|
|
server_side_encryption_configuration {
|
|
rule {
|
|
apply_server_side_encryption_by_default {
|
|
sse_algorithm = "aws:kms"
|
|
}
|
|
}
|
|
}
|
|
} |