CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsCross-Region S3 replication can help with meeting compliance requirements, minimizing latency, and increasing operational efficiency. Same-Region S3 replication can help with aggregating logs and compliance with data sovereignty laws.
Configure a replication_configuration block that specifies an IAM role for replicating objects and rules managing the replication.
Example configuration:
resource "aws_s3_bucket" "bucket" {
  provider = "aws.central"
  bucket   = "valid-replication-host"
  acl      = "private"
  versioning {
    enabled = true
  }
  replication_configuration {
    role = "${aws_iam_role.replication.arn}"
    rules {
      id     = "ruleid"
      prefix = "ruleprefix"
      status = "Enabled"
      destination {
        bucket        = "${aws_s3_bucket.destination.arn}"
        storage_class = "STANDARD"
      }
    }
  }
  
  # other required fields here
}