Skip to content

Instantly share code, notes, and snippets.

@dmlayton
Last active May 4, 2020 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmlayton/69eb570c01b3609e95edd3ebc25238da to your computer and use it in GitHub Desktop.
Save dmlayton/69eb570c01b3609e95edd3ebc25238da to your computer and use it in GitHub Desktop.
resource "aws_s3_bucket" "test_client_bucket" {
bucket = "test-client-bucket-x130099"
region = "eu-west-2"
acl = "private"
server_side_encryption_configuration {
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment