https://github.com/cloudpunks/ansible-amazon-ssm-agent
Ansible role to install and configure Amazon SSM agent
https://github.com/cloudpunks/ansible-amazon-ssm-agent
ansible ansible-role hacktoberfest role
Last synced: about 2 months ago
JSON representation
Ansible role to install and configure Amazon SSM agent
- Host: GitHub
- URL: https://github.com/cloudpunks/ansible-amazon-ssm-agent
- Owner: cloudpunks
- License: apache-2.0
- Created: 2025-02-20T14:08:23.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-10T08:22:41.000Z (over 1 year ago)
- Last Synced: 2025-03-10T09:26:41.598Z (over 1 year ago)
- Topics: ansible, ansible-role, hacktoberfest, role
- Language: Nix
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# amazon-ssm-agent
[](https://github.com/cloudpunks/ansible-amazon-ssm-agent)
[](https://github.com/cloudpunks/ansible-amazon-ssm-agent/actions/workflows/general.yml)
[](https://github.com/cloudpunks/ansible-amazon-ssm-agent/actions/workflows/docs.yml)
[](https://github.com/cloudpunks/ansible-amazon-ssm-agent/actions/workflows/galaxy.yml)
[](https://github.com/cloudpunks/ansible-amazon-ssm-agent/blob/master/LICENSE)
[](https://galaxy.ansible.com/cloudpunks/amazon_ssm_agent)
Ansible role to install and configure Amazon SSM agent.
## Table of contents
- [Requirements](#requirements)
- [Default Variables](#default-variables)
- [amazon_ssm_agent_arch](#amazon_ssm_agent_arch)
- [amazon_ssm_agent_package](#amazon_ssm_agent_package)
- [amazon_ssm_agent_version](#amazon_ssm_agent_version)
- [Discovered Tags](#discovered-tags)
- [Dependencies](#dependencies)
- [License](#license)
- [Author](#author)
---
## Requirements
- Minimum Ansible version: `2.10`
## Default Variables
### amazon_ssm_agent_arch
Architecture of the package to install
#### Default value
```YAML
amazon_ssm_agent_arch: "{{ 'arm64' if ansible_architecture == 'aarch64' or ansible_architecture == 'arm64' else 'amd64' }}"
```
### amazon_ssm_agent_package
Download URL for the package to install
#### Default value
```YAML
amazon_ssm_agent_package: https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/{{ amazon_ssm_agent_version }}/debian_{{ amazon_ssm_agent_arch }}/amazon-ssm-agent.deb
```
### amazon_ssm_agent_version
Version of the release to install
#### Default value
```YAML
amazon_ssm_agent_version: latest
```
## Discovered Tags
**_amazon-ssm-agent_**
## Dependencies
- None
## License
Apache-2.0
## Author
[Pascal Rimann](https://github.com/pascalrimann)