include::../description.adoc[] include::../ask-yourself.adoc[] include::../recommended.adoc[] == Sensitive Code Example S3 server access logging is disabled: ---- resource "aws_s3_bucket" "mynoncompliantbucket" { # Sensitive bucket = "mynoncompliantbucketname" } ---- == Compliant Solution S3 server access logging is enabled: ---- resource "aws_s3_bucket" "myloggingbucket" { bucket = "myloggingbucketname" acl = "log-delivery-write" } resource "aws_s3_bucket" "mycompliantbucket" { # Compliant bucket = "mycompliantbucketname" logging { target_bucket = "myloggingbucketname" target_prefix = "log/mycompliantbucket" } } ---- include::../see.adoc[] ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) include::../message.adoc[] endif::env-github,rspecator-view[]