Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

added policy to check enable-at_rest_encryption for elasticache #1082

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
13 changes: 13 additions & 0 deletions avd_docs/aws/elasticache/AVD-AWS-0197/docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

Ensure that your Amazon ElastiCache Redis clusters are encrypted to increase data security.

### Impact
<!-- Add Impact here -->

<!-- DO NOT CHANGE -->
{{ remediationActions }}

### Links
- https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/at-rest-encryption.html


2 changes: 1 addition & 1 deletion avd_docs/kubernetes/general/AVD-KSV-01010/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Storing sensitive content such as usernames and email addresses in configMaps is unsafe

### Impact
Unsafe storage of sensitive content in configMaps could lead to the information being compromised.
<!-- Add Impact here -->
SanaaYousaf marked this conversation as resolved.
Show resolved Hide resolved

<!-- DO NOT CHANGE -->
{{ remediationActions }}
Expand Down
2 changes: 1 addition & 1 deletion avd_docs/kubernetes/general/AVD-KSV-0107/docs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

apiVersion and kind has been deprecated
apiVersion '' and kind '' has been deprecated on: '' and planned for removal on:''
SanaaYousaf marked this conversation as resolved.
Show resolved Hide resolved

### Impact
<!-- Add Impact here -->
Expand Down
1 change: 1 addition & 0 deletions avd_docs/kubernetes/general/AVD-KSV-0108/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Services with external IP addresses allows direct access from the internet and m
### Impact
Kubernetes API server in all versions allow an attacker who is able to create a ClusterIP service and set the spec.externalIPs field, to intercept traffic to that IP address. Additionally, an attacker who is able to patch the status (which is considered a privileged operation and should not typically be granted to users) of a LoadBalancer service can set the status.loadBalancer.ingress.ip to similar effect.
https://www.cvedetails.com/cve/CVE-2020-8554/

SanaaYousaf marked this conversation as resolved.
Show resolved Hide resolved
<!-- DO NOT CHANGE -->
{{ remediationActions }}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# METADATA
# title: "ElastiCache Redis Cluster Encryption At-Rest"
# description: "Ensure that your Amazon ElastiCache Redis clusters are encrypted to increase data security."
# scope: package
# schemas:
# - input: schema.input
# related_resources:
# - https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/at-rest-encryption.html
# custom:
# avd_id: AVD-AWS-0197
# provider: aws
# service: elasticache
# severity: HIGH
# short_code: enable-at-rest-encryption
# recommended_action: "Enable encryption for ElastiCache cluster data-at-rest"
# input:
# selector:
# - type: cloud
package builtin.aws.elasticache.aws0197

deny[res] {
group := input.aws.elasticache.replicationgroups[_]
not group.atrestencryptionenabled.value
res := result.new("Replication group does not have at-rest encryption enabled.", group.atrestencryptionenabled)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package builtin.aws.elasticache.aws0197

test_detects_when_disabled {
r := deny with input as {"aws": {"elasticache": {"replicationgroups": [{"atrestencryptionenabled": {"value": false}}]}}}
count(r) == 1
}

test_when_enabled {
r := deny with input as {"aws": {"elasticache": {"replicationgroups": [{"atrestencryptionenabled": {"value": true}}]}}}
count(r) == 0
}