45 lines
776 B
Plaintext
Raw Normal View History

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[]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
endif::env-github,rspecator-view[]