- terraform-vm/: ARM VM (A1.Flex Free Tier), Docker Compose, Block Volume, LB+WAF+SSL - terraform-oke/: OKE cluster (3 nodes Intel), NodePort, LB+WAF+SSL - k8s/: namespace, deployments, services, PVC, secrets, configmap - Dockerfile.frontend: self-contained nginx+dist image - push-images.sh: multi-arch build (amd64+arm64) + push to OCIR - dns.tf: conditional OCI DNS Zone + A record (when domain available) - Both stacks 100% independent, no shared modules - .gitignore: terraform state, .terraform/, *.tfvars
44 lines
394 B
Plaintext
44 lines
394 B
Plaintext
# Secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
*.key
|
|
*.pk8
|
|
*.p12
|
|
*.jks
|
|
**/wallets/
|
|
**/oci_configs/
|
|
|
|
# System
|
|
.DS_Store
|
|
**/.DS_Store
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
|
|
# Terraform
|
|
**/.terraform/
|
|
*.tfstate
|
|
*.tfstate.backup
|
|
*.tfvars
|
|
!*.tfvars.example
|
|
.terraform.lock.hcl
|
|
|
|
# Project internal docs
|
|
LESSONS_LEARNED.md
|