2021-05-21 17:48:13 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
|
|
|
|
== Sensitive Code Example
|
|
|
|
|
|
|
|
Server-side encryption is not used:
|
|
|
|
|
|
|
|
----
|
|
|
|
resource "aws_s3_bucket" "mynoncompliantbucket" {
|
|
|
|
bucket = "mynoncompliantbucket"
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
|
|
|
Server-side encryption with Amazon S3-Managed Keys is used:
|
|
|
|
|
|
|
|
----
|
|
|
|
resource "aws_s3_bucket" "mycompliantbucket" {
|
|
|
|
bucket = "mycompliantbucket"
|
|
|
|
|
|
|
|
server_side_encryption_configuration {
|
|
|
|
rule {
|
|
|
|
apply_server_side_encryption_by_default {
|
|
|
|
sse_algorithm = "AES256"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
include::../see.adoc[]
|
2021-09-20 15:38:42 +02:00
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
|
|
|
|
'''
|
|
|
|
== Implementation Specification
|
|
|
|
(visible only on this page)
|
|
|
|
|
|
|
|
include::../message.adoc[]
|
|
|
|
|
|
|
|
endif::env-github,rspecator-view[]
|