-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 877 Bytes
/
.env.example
File metadata and controls
43 lines (35 loc) · 877 Bytes
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
# SentinelPrime Configuration
# Copy this file to .env and configure for your environment
# API Settings
API_HOST=0.0.0.0
API_PORT=8000
API_WORKERS=4
# Kafka/Redpanda Settings
KAFKA_BOOTSTRAP_SERVERS=kafka:9092
KAFKA_TOPIC_EDR=sentinel-edr-events
KAFKA_TOPIC_NDR=sentinel-ndr-events
KAFKA_TOPIC_ZTNA=sentinel-ztna-events
KAFKA_CONSUMER_GROUP=sentinel-control-plane
# Neo4j Settings
NEO4J_URI=bolt://neo4j:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=sentinelprime
# Redis Settings
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_DB=0
# ML Model Settings
ML_ANOMALY_THRESHOLD=0.75
ML_RISK_THRESHOLD_HIGH=0.8
ML_RISK_THRESHOLD_MEDIUM=0.5
ML_RISK_THRESHOLD_LOW=0.3
# Enforcement Settings
AUTO_ENFORCE_ENABLED=false
ENFORCEMENT_DELAY_SECONDS=5
# Observability
PROMETHEUS_PORT=9090
LOG_LEVEL=INFO
# External Services (configure if using real systems)
ZTNA_API_URL=
EDR_API_URL=
NDR_API_URL=