An open API service indexing awesome lists of open source software.

https://github.com/aboutbits/ansible-aws-cli

Ansible - AWS CLI Role
https://github.com/aboutbits/ansible-aws-cli

ansible ansible-role aws-cli

Last synced: 12 months ago
JSON representation

Ansible - AWS CLI Role

Awesome Lists containing this project

README

          

Ansible AWS CLI Role
====================

Installation of the AWS CLI.

## Example Playbook

```yaml
- hosts: all
tasks:
- ansible.builtin.include_role:
name: ansible-aws-cli
```

## Versioning

In order to have a verioning in place and working, create leightweight tags that point to the appropriate minor release versions.

Creating a new minor release:

```bash
git tag v2
git push --tags
```

Replacing an already existing minor release:

```bash
git tag -d v2
git push origin :refs/tags/v2
git tag v2
git push --tags
```