-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 2.35 KB
/
.env.example
File metadata and controls
43 lines (35 loc) · 2.35 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
# Version Guard Environment Variables
# Copy this file to .env and fill in your actual values
# ─── Temporal Configuration ───────────────────────────────────────────────────
TEMPORAL_ENDPOINT=localhost:7233
TEMPORAL_NAMESPACE=version-guard-dev
TEMPORAL_TASK_QUEUE=version-guard-detection
# ─── Wiz Configuration (Optional - falls back to mock data if not provided) ───
# Get these from your Wiz Service Account
WIZ_CLIENT_ID_SECRET=your-wiz-client-id-here
WIZ_CLIENT_SECRET_SECRET=your-wiz-client-secret-here
WIZ_CACHE_TTL_HOURS=1
# Wiz Saved Report IDs (create reports in Wiz UI and copy the IDs)
WIZ_AURORA_REPORT_ID=your-aurora-report-id
WIZ_ELASTICACHE_REPORT_ID=your-elasticache-report-id
WIZ_EKS_REPORT_ID=your-eks-report-id
# ─── AWS Configuration ────────────────────────────────────────────────────────
# Used for EOL data APIs and S3 snapshots
# Make sure your AWS credentials are configured via:
# - ~/.aws/credentials
# - AWS_ACCESS_KEY_ID / AWS_SECRET_ACCESS_KEY environment variables
# - IAM role (if running in AWS)
AWS_REGION=us-west-2
# ─── S3 Snapshot Storage ──────────────────────────────────────────────────────
S3_BUCKET=version-guard-snapshots
S3_PREFIX=snapshots/
# ─── gRPC Service ─────────────────────────────────────────────────────────────
GRPC_PORT=8080
# ─── Tag Configuration ────────────────────────────────────────────────────────
# Customize which AWS resource tags to use for extracting metadata
# Comma-separated lists - first match wins
TAG_APP_KEYS=app,application,service
TAG_ENV_KEYS=environment,env
TAG_BRAND_KEYS=brand
# ─── Logging ──────────────────────────────────────────────────────────────────
LOG_LEVEL=info