https://github.com/tonyskapunk/beat-ansible-collection
Beat (Internet Time) Ansible Collection
https://github.com/tonyskapunk/beat-ansible-collection
ansible ansible-collection beat galaxy hacktoberfest internettime
Last synced: 16 days ago
JSON representation
Beat (Internet Time) Ansible Collection
- Host: GitHub
- URL: https://github.com/tonyskapunk/beat-ansible-collection
- Owner: tonyskapunk
- License: gpl-3.0
- Created: 2023-09-26T20:42:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T23:21:04.000Z (almost 2 years ago)
- Last Synced: 2025-04-18T13:38:46.430Z (about 1 year ago)
- Topics: ansible, ansible-collection, beat, galaxy, hacktoberfest, internettime
- Language: Python
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-GPL-3.0
Awesome Lists containing this project
README
[](https://galaxy.ansible.com/ui/repo/published/tonyskapunk/beat/)
[](https://github.com/tonyskapunk/beat-ansible-collection/tags)
[](https://github.com/tonyskapunk/beat-ansible-collection/tags)
[](https://github.com/tonyskapunk/beat-ansible-collection/tags)
[](https://github.com/tonyskapunk/beat-ansible-collection/actions/workflows/publish.yml)
[](https://github.com/tonyskapunk/beat-ansible-collection/actions/workflows/module-testing.yml)
[](https://github.com/tonyskapunk/beat-ansible-collection/actions/workflows/role-testing.yml)
# Ansible Collection - tonyskapunk.beat
Based on the [beat](https://github.com/tonyskapunk/beat) project.
Documentation for the collection.
This collection provides a module and a role to exemplify the use of them through collections
## Ansible version compatibility
The collection is tested and supported with: `ansible >= 2.9`
## Installing the collection
```shell
ansible-galaxy collection install tonyskapunk.beat
```
You can also include it in a `requirements.yml` file and install it via ansible-galaxy collection install -r `requirements.yml`, using the format:
```yaml
---
collections:
- name: tonyskapunk.beat
```
## Using this collection
You can call modules by their Fully Qualified Collection Namespace (FQCN), such as `tonyskapunk.beat.beat`:
```yaml
- name: Using beat
hosts: localhost
tasks:
- name: Get internet time
tonyskapunk.beat.beat:
centibeats: true
register: beats
```
or you can add full namespace and collection name in the `collections` element in your playbook
```yaml
- name: Using grafana collection
hosts: localhost
collection:
- tonyskapunk.beat
tasks:
- name: Get internet time
beat:
centibeats: true
register: beats
```
## License
GPL-3.0-or-later