feat: setup AWS infrastructure directory and checklist

This commit is contained in:
2026-04-05 09:32:32 +00:00
commit 79887ffb59
7 changed files with 946 additions and 0 deletions
@@ -0,0 +1,36 @@
# Example terraform.tfvars file for Syslog Solution LLC AWS Organization
# Copy this file to terraform.tfvars and update the values
# AWS Configuration
aws_region = "us-east-1"
aws_profile = "syslog-business" # AWS CLI profile to use
# Organization Details
organization_name = "Syslog Solution LLC"
# Account Emails
dev_account_email = "jerome+dev@sysloggh.com"
staging_account_email = "jerome+staging@sysloggh.com"
# Billing Configuration
billing_alert_email = "jerome@sysloggh.com"
monthly_spend_threshold = 100 # USD
# Environment Tags
environment = "management"
project_name = "Syslog Solution LLC"
# Terraform Backend Configuration (optional)
enable_s3_backend = false
s3_backend_bucket = "syslog-terraform-state"
s3_backend_region = "us-east-1"
enable_dynamodb_lock = false
dynamodb_lock_table = "terraform-locks"
# Additional Tags
tags = {
BusinessUnit = "Infrastructure"
CostCenter = "1001"
DataClassification = "Internal"
Compliance = "SOC2"
}