-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcdk.json
More file actions
65 lines (65 loc) · 2 KB
/
cdk.json
File metadata and controls
65 lines (65 loc) · 2 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"app": "python3 app.py",
"context": {
"main_resources_name": "aws-siem-networking",
"tags": {
"Owner": "Santiago Garcia Arango",
"Source": "https://github.com/san99tiago/aws-cybersecurity-siem",
"Usage": "Networking resources for AWS SIEM"
},
"app_config": {
"dev": {
"deployment_environment": "dev",
"networking": {
"vpc_name": "main-vpc-dev",
"vpc_cidr": "10.0.0.0/20",
"public_subnet_mask": 24,
"private_subnet_mask": 24,
"enable_nat_gateway": false,
"enable_vpc_flow_logs": true,
"enable_vpc_endpoints": true
},
"demo_servers": {
"short_name": "demo-server",
"sg_cidrs_list": ["0.0.0.0/0"],
"instance_type": "t2.micro",
"ami_name": "al2023-ami-2023.5.20240903.0-kernel-6.1-x86_64",
"min_capacity": 2,
"max_capacity": 2,
"desired_capacity": 2
}
},
"prod": {
"deployment_environment": "prod",
"networking": {
"vpc_name": "main-vpc-prod",
"vpc_cidr": "10.0.16.0/20",
"public_subnet_mask": 24,
"private_subnet_mask": 24,
"enable_nat_gateway": false,
"enable_vpc_flow_logs": true,
"enable_vpc_endpoints": true
},
"siem": {
"short_name": "wazuh-siem",
"sg_cidrs_list": ["0.0.0.0/0"],
"instance_type": "c5a.xlarge",
"ami_name": "Wazuh_v4.9.0-1-79ced6c9-1e2d-4f22-ada6-dc528473b3f8",
"min_capacity": 1,
"max_capacity": 1,
"desired_capacity": 1,
"hosted_zone_name": "san99tiago.com"
},
"demo_servers": {
"short_name": "demo-server",
"sg_cidrs_list": ["0.0.0.0/0"],
"instance_type": "t2.micro",
"ami_name": "al2023-ami-2023.5.20240903.0-kernel-6.1-x86_64",
"min_capacity": 5,
"max_capacity": 5,
"desired_capacity": 5
}
}
}
}
}