https://github.com/sdorra/godaddy-ansible-module
Ansible Role for GoDaddy API
https://github.com/sdorra/godaddy-ansible-module
anisble-module ansible dns godaddy godaddy-api
Last synced: about 1 month ago
JSON representation
Ansible Role for GoDaddy API
- Host: GitHub
- URL: https://github.com/sdorra/godaddy-ansible-module
- Owner: sdorra
- Created: 2021-07-02T18:32:37.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-02T18:39:10.000Z (almost 5 years ago)
- Last Synced: 2025-03-02T13:31:24.305Z (over 1 year ago)
- Topics: anisble-module, ansible, dns, godaddy, godaddy-api
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ansible Role for GoDaddy API
## Installation
Just clone the repository and add the library folder to the ansible module path.
For more information have a look at the [ansible documentation](https://docs.ansible.com/ansible/latest/dev_guide/developing_locally.html#adding-a-module-locally).
## Usage
```yaml
- name: Install godaddypy package
pip:
name: godaddypy
- name: Setup dns record for dns.example.net
godaddy_record:
api_key: "your_api_key"
api_secret: "your_api_secret"
domain: "example.net"
name: "dns"
type: "A"
data: "8.8.8.8"
```