{"id":30988446,"url":"https://github.com/emberstack/ansible","last_synced_at":"2026-02-16T14:01:50.152Z","repository":{"id":300560649,"uuid":"1006477598","full_name":"emberstack/ansible","owner":"emberstack","description":"Emberstack Frameworks Ansible Collections.","archived":false,"fork":false,"pushed_at":"2025-12-15T19:07:12.000Z","size":70,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-11T01:33:55.740Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emberstack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-22T11:11:56.000Z","updated_at":"2025-12-15T19:07:15.000Z","dependencies_parsed_at":"2025-06-22T12:24:57.828Z","dependency_job_id":"6a4de237-3be3-4cf1-ad83-9db0216d50ab","html_url":"https://github.com/emberstack/ansible","commit_stats":null,"previous_names":["emberstack/es.fx.ansible","emberstack/ansible"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/emberstack/ansible","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emberstack%2Fansible","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emberstack%2Fansible/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emberstack%2Fansible/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emberstack%2Fansible/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emberstack","download_url":"https://codeload.github.com/emberstack/ansible/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emberstack%2Fansible/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29509254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-12T17:21:00.941Z","updated_at":"2026-02-16T14:01:50.131Z","avatar_url":"https://github.com/emberstack.png","language":null,"readme":"# EmberStack Ansible Collections\n\nEnterprise-grade Ansible collections for network infrastructure automation.\n\n## Overview\n\nThis repository contains multiple Ansible collections under the EmberStack namespace, providing comprehensive automation solutions for various network platforms and infrastructure components.\n\n## Available Collections\n\n### emberstack.fortios\nComprehensive automation for Fortinet FortiOS devices including FortiGate firewalls.\n\n**Features:**\n- Complete FortiGate configuration management\n- Support for FortiOS 7.4\n- VDOM support\n- SD-WAN configuration\n- VPN management (IPSec, SSL)\n- And much more...\n\n[View FortiOS Collection Documentation](src/fortios/)\n\n## Installation\n\n### Install All Collections\n```bash\n# Clone the repository\ngit clone https://github.com/emberstack/ansible.git\ncd ansible\n\n# Install all collections\nfor collection in src/*/; do\n  ansible-galaxy collection install \"$collection\" --force\ndone\n```\n\n### Install Specific Collection\n```bash\n# Install FortiOS collection\nansible-galaxy collection install ./src/fortios\n\n# Or directly from GitHub\nansible-galaxy collection install git+https://github.com/emberstack/ansible.git#/src/fortios\n```\n\n### Using as Git Submodule\n```bash\n# Add repository as submodule\ngit submodule add https://github.com/emberstack/ansible.git ansible_collections_repo\n\n# Use collections from the submodule\nexport ANSIBLE_COLLECTIONS_PATH=\"${PWD}/ansible_collections_repo/src:~/.ansible/collections\"\n```\n\n## Repository Structure\n\n```\nansible/\n├── src/\n│   └── fortios/             # FortiOS collection\n│       ├── galaxy.yml\n│       ├── README.md\n│       ├── roles/\n│       ├── plugins/\n│       ├── playbooks/\n│       └── docs/\n├── README.md                    # This file\n├── LICENSE                      # Repository license\n└── CLAUDE.md                    # Development documentation\n```\n\n## Requirements\n\n- Ansible 2.9 or higher\n- Python 3.6 or higher\n- Collection-specific requirements (see individual collection documentation)\n\n## Usage Example\n\n```yaml\n---\n- name: Configure network infrastructure\n  hosts: network_devices\n  collections:\n    - emberstack.fortios\n    \n  tasks:\n    - name: Configure FortiGate firewall\n      include_role:\n        name: fortigate\n      when: device_type == \"fortigate\"\n```\n\n## Development\n\n### Setting Up Development Environment\n```bash\n# Clone the repository\ngit clone https://github.com/emberstack/ansible.git\ncd ansible\n\n# Install collections for development\nfor collection in src/*/; do\n  ansible-galaxy collection install \"$collection\" --force\ndone\n```\n\n### Running Tests\n```bash\n# Test specific collection\ncd src/fortios\nansible-test sanity\nansible-test integration\n```\n\n## Contributing\n\nWe welcome contributions! Please see our contributing guidelines for details.\n\n## Support\n\n- **Issues**: [GitHub Issues](https://github.com/emberstack/ansible/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/emberstack/ansible/discussions)\n\n## License\n\nMIT License - see [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femberstack%2Fansible","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femberstack%2Fansible","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femberstack%2Fansible/lists"}