{"id":15576637,"url":"https://github.com/abn/ansible-role-ec2-api-tools-java","last_synced_at":"2026-02-17T17:01:45.146Z","repository":{"id":149541893,"uuid":"110409667","full_name":"abn/ansible-role-ec2-api-tools-java","owner":"abn","description":"Ansible Role: Install and configure AWS ec2-api-tools on a target node","archived":false,"fork":false,"pushed_at":"2017-11-12T07:01:19.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-06T00:26:53.538Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abn.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}},"created_at":"2017-11-12T06:09:34.000Z","updated_at":"2017-11-12T06:25:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"20affd52-2f42-4c4f-a382-e72ace869a82","html_url":"https://github.com/abn/ansible-role-ec2-api-tools-java","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/abn/ansible-role-ec2-api-tools-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fansible-role-ec2-api-tools-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fansible-role-ec2-api-tools-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fansible-role-ec2-api-tools-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fansible-role-ec2-api-tools-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abn","download_url":"https://codeload.github.com/abn/ansible-role-ec2-api-tools-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fansible-role-ec2-api-tools-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29550816,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T14:33:00.708Z","status":"ssl_error","status_checked_at":"2026-02-17T14:32:58.657Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2024-10-02T18:53:29.323Z","updated_at":"2026-02-17T17:01:45.123Z","avatar_url":"https://github.com/abn.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"EC2 API Tools (Java)\n====================\n[![Build Status](https://travis-ci.org/abn/ansible-role-ec2-api-tools-java.svg?branch=master)](https://travis-ci.org/abn/ansible-role-ec2-api-tools-java) [![Ansible Role](https://img.shields.io/ansible/role/21887.svg)](https://galaxy.ansible.com/abn/managed-node-bootstrap/)\n\nInstall and configure AWS ec2-api-tools on a target node. This does not use the newer (recommended) python package `awscli` as this was purpose built for use cases that still use the java tools (eg: [Bamboo Elastic Agent](https://confluence.atlassian.com/bamboo/creating-a-custom-elastic-image-289277146.html)).\n\nRequirements\n------------\n\nUsing this role does not require any explicit requirements other than Ansible itself.\n\nRole Variables\n--------------\n\nThe following variables can be set to alter execution behaviour.\n1. `ec2_api_tools_url`: Set this if you want to use a custom installation source.\n2. `ec2_api_tools_dir`: Set this to alter the installation directory.\n3. `ec2_api_tools_refresh`: Set this to `yes` if you'd like to force a re-install if a previous installation exists. This is checked for by testing if `ec2_api_tools_dir` exists, and if set will remove all installations of the tool before installing again.\n\nDependencies\n------------\n\nThis role itself does not have any external dependencies. However, if you are executing tests, it will require the galaxy role [abn.managed-node-bootstrap](https://galaxy.ansible.com/abn/managed-node-bootstrap) to be installed.\n\nExample Playbook\n----------------\n\nA sample playbook that refreshes any existing installations.\n\n    - hosts: all\n      roles:\n         - { role: abn.ec2-api-tools-java, ec2_api_tools_refresh: yes }\n\nTesting\n-------\nBefore testing, you need to ensure that the submodules required have been cloned.\n```sh\ngit submodule update --init --recursive\n```\n\n### Local Environment\nThis role uses [Molecule](https://molecule.readthedocs.io/en/latest/) and docker instances to enable testing. You can run this locally on your development environment provided you have python installed and are running the docker daemon.\n\n```sh\n# install molecule and docker-py requirements\npip install -r test-requirements.txt\nmolecule test\n```\n\nThis will as configured in the default molecule scenario, spin up containers of the supported distributions and execute a sample playbook.\n\n### Tox\nThis project also has [tox](http://tox.readthedocs.io/en/latest/) configured to run against multiple ansible versions with [Molecule](https://molecule.readthedocs.io/en/latest/). This can simply be run using tox.\n\n```sh\ntox\n```\n\nRefer to the [Molecule documentation](https://molecule.readthedocs.io/en/latest/testing.html) and [tox documentation](http://tox.readthedocs.io/en/latest/) for advance usage instructions.\n\nLicense\n-------\n\nApache License 2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabn%2Fansible-role-ec2-api-tools-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabn%2Fansible-role-ec2-api-tools-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabn%2Fansible-role-ec2-api-tools-java/lists"}