{"id":20925108,"url":"https://github.com/gbh-tech/ansible-deployment-action","last_synced_at":"2026-04-10T02:58:55.847Z","repository":{"id":225222116,"uuid":"758635972","full_name":"gbh-tech/ansible-deployment-action","owner":"gbh-tech","description":"A GitHub Action that facilitates Ansible-based deployments to AWS EKS clusters.","archived":false,"fork":false,"pushed_at":"2025-01-24T16:36:32.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T01:16:01.352Z","etag":null,"topics":["action","ansible","aws","deployment","eks","env","github","kubernetes","utlities"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/gbh-tech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2024-02-16T18:35:46.000Z","updated_at":"2025-01-24T16:34:53.000Z","dependencies_parsed_at":"2025-03-13T01:13:25.204Z","dependency_job_id":"b4a081e9-4864-407c-bfd1-7d7dbfcd82d2","html_url":"https://github.com/gbh-tech/ansible-deployment-action","commit_stats":null,"previous_names":["gbh-tech/ansible-deployment-action"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/gbh-tech/ansible-deployment-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbh-tech%2Fansible-deployment-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbh-tech%2Fansible-deployment-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbh-tech%2Fansible-deployment-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbh-tech%2Fansible-deployment-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gbh-tech","download_url":"https://codeload.github.com/gbh-tech/ansible-deployment-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbh-tech%2Fansible-deployment-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269730846,"owners_count":24466112,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["action","ansible","aws","deployment","eks","env","github","kubernetes","utlities"],"created_at":"2024-11-18T20:29:18.146Z","updated_at":"2026-04-10T02:58:55.817Z","avatar_url":"https://github.com/gbh-tech.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- omit in toc --\u003e\n# Ansible Deployment Action\n\n\u003c!-- omit in toc --\u003e\n## Content\n\n- [Overview](#overview)\n- [Usage](#usage)\n  - [Example usage](#example-usage)\n\n## Overview\n\nThis GitHub Action facilitates Ansible deployments, allowing you to run Ansible playbooks with ease. It provides options to configure playbook paths, AWS regions, run modes, and secrets for secure deployment.\n\n## Usage\n\nSee [action.yml](action.yml).\n\n``` yaml\n- uses: actions/ansible-deployment@v0.0.3\n  with:\n    # Optional. Specifies the path to the playbook\n    playbook_path: 'playbooks'\n\n    # The name of the playbook\n    playbook_name: ''\n\n    # Optional. Set to true to run Ansible playbooks in --check mode\n    dry_run: false\n\n    # Optional. Set no_log to 'false' to let tasks log all output\n    # WARNING! If you set no_log to 'false', sensitive credentials may be log\n    # into the console. Default is 'true'\n    no_log: true\n\n    # Specifies the AWS region name for configuration\n    aws_region: ''\n\n    # A comma-separated string of tags to filter which tasks to run in the playbook\n    # The order of the tags is important\n    # Example: 'system,deployment,nginx,certbot'\n    ansible_tags: ''\n\n    # The ansible working directory\n    workdir: 'ansible'\n\n    # Optional. AWS service account access key\n    aws_access_key_id: ''\n\n    # Ensure the following values are treated as secrets!\n\n    # Optional. Ansible vault password to decrypt secrets\n    ansible_vault_password: ''\n\n    # Optional. AWS service account secret access key\n    aws_secret_access_key: ''\n```\n\n### Example usage\n\n```yaml\n- uses: gbh-tech/ansible-deployment@v0.0.3\n  with:\n    playbook_path: 'playbooks'\n    playbook_name: 'stage.yaml'\n    workdir: 'ansible'\n    dry_run: true\n    no_log: true\n    aws_region: 'us-east-1'\n    ansible_vault_password: ${{ secrets.ANSIBLE_VAULT_PASSWORD }}\n    aws_access_key_id: ${{ vars.AWS_ACCESS_KEY_ID }}\n    aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n    ansible_tags: \u003e-\n      auth,\n      env-vars,\n      info\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgbh-tech%2Fansible-deployment-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgbh-tech%2Fansible-deployment-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgbh-tech%2Fansible-deployment-action/lists"}