-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.py.example
More file actions
16 lines (12 loc) · 844 Bytes
/
config.py.example
File metadata and controls
16 lines (12 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Green Stone Configuration
# Copy this file to config.py and fill in your values,
# OR set these as environment variables (preferred for Lambda).
import os
# AWS Account IDs
AUTOMATION_ACCOUNT = os.environ.get('AUTOMATION_ACCOUNT', '123456789012') # Security/Automation account where Lambdas run
ORG_ACCOUNT = os.environ.get('ORG_ACCOUNT', '987654321098') # Organization management account with CloudTrail Lake
# IAM Role Names (deployed via FleetAccess - https://github.com/raajheshkannaa/fleet-access)
CLOUDTRAIL_LAKE_READ_ROLE = os.environ.get('CLOUDTRAIL_LAKE_READ_ROLE', 'cloudtrail-lake-read-role')
# Slack Configuration
HOOK_URL = os.environ.get('SLACK_HOOK_URL', 'https://hooks.slack.com/services/YOUR/WEBHOOK/URL')
SIGNINGSECRET = os.environ.get('SLACK_SIGNING_SECRET', 'your-slack-signing-secret')