Skip to content

Instantly share code, notes, and snippets.

@possebon
Last active December 19, 2025 18:30
Show Gist options
  • Select an option

  • Save possebon/0606ab0d072df88084f8afa1624da3dd to your computer and use it in GitHub Desktop.

Select an option

Save possebon/0606ab0d072df88084f8afa1624da3dd to your computer and use it in GitHub Desktop.
Open Source Infrastructure Stack - 15-ansible-directory-structure
ansible/
├── group_vars/
│   ├── all.yml          # Shared across ALL environments
│   ├── infisical.yml    # Secrets management config
│   ├── global.yml       # Global services (Keycloak, n8n, etc.)
│   ├── development.yml  # Dev-specific overrides
│   ├── staging.yml      # Staging-specific overrides
│   └── production.yml   # Production-specific overrides
├── playbooks/
│   ├── deploy-infisical-agent.yml
│   ├── deploy-env-stack.yml
│   └── ...
└── stacks/
    ├── global/          # Shared service stacks
    └── templates/       # Jinja2 stack templates
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment