forked from iacsecurity/tool-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckov_results.txt
43 lines (32 loc) · 1.51 KB
/
checkov_results.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
_ _
___| |__ ___ ___| | _______ __
/ __| '_ \ / _ \/ __| |/ / _ \ \ / /
| (__| | | | __/ (__| < (_) \ V /
\___|_| |_|\___|\___|_|\_\___/ \_/
By bridgecrew.io | version: 2.0.87
terraform scan results:
Passed checks: 0, Failed checks: 2, Skipped checks: 0
Check: CKV_AWS_134: "Ensure that Amazon ElastiCache Redis clusters have automatic backup turned on"
FAILED for resource: aws_elasticache_cluster.default
File: /main.tf:1-7
Guide: https://docs.bridgecrew.io/docs/ensure-that-amazon-elasticache-redis-clusters-have-automatic-backup-turned-on
1 | resource "aws_elasticache_cluster" "default" {
2 | cluster_id = "cluster"
3 | engine = "redis"
4 | node_type = "cache.m5.large"
5 | num_cache_nodes = 1
6 | parameter_group_name = "default.redis6.x"
7 | }
Check: CKV_AWS_134: "Ensure that Amazon ElastiCache Redis clusters have automatic backup turned on"
FAILED for resource: aws_elasticache_cluster.disabled
File: /main.tf:9-17
Guide: https://docs.bridgecrew.io/docs/ensure-that-amazon-elasticache-redis-clusters-have-automatic-backup-turned-on
9 | resource "aws_elasticache_cluster" "disabled" {
10 | cluster_id = "cluster"
11 | engine = "redis"
12 | node_type = "cache.m5.large"
13 | num_cache_nodes = 1
14 | parameter_group_name = "default.redis6.x"
15 |
16 | snapshot_retention_limit = 0
17 | }