Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit afdbcde

Browse files
committed
Initial release.
1 parent e0dc190 commit afdbcde

File tree

6 files changed

+49
-5
lines changed

6 files changed

+49
-5
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
/credentials.yml
1+
/changelogs/.plugin-cache.yaml
2+
/felixfontein-hosttech_dns-*.tar.gz
23
/playground/
34
/tests/output
45
/tests/integration/integration_config.yml
5-
/felixfontein-hosttech_dns-*.tar.gz
6+
67
__pycache__

changelogs/CHANGELOG.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
===================================
2+
Hosttech DNS Modules Release Notes
3+
===================================
4+
5+
.. contents:: Topics
6+
7+
8+
v1.0.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
Initial version as a collection. Continues the `old git repository <https://github.com/felixfontein/ansible-hosttech/>`_.
15+
16+
New Modules
17+
-----------
18+
19+
- felixfontein.hosttech_dns.hosttech_dns_record - Add or delete entries in Hosttech DNS service
20+
- felixfontein.hosttech_dns.hosttech_dns_record_info - Retrieve entries in Hosttech DNS service

changelogs/changelog.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
ancestor: null
2+
releases:
3+
1.0.0:
4+
changes:
5+
release_summary: Initial version as a collection. Continues the `old git repository
6+
<https://github.com/felixfontein/ansible-hosttech/>`_.
7+
fragments:
8+
- 1.0.0.yml
9+
modules:
10+
- description: Add or delete entries in Hosttech DNS service
11+
name: felixfontein.hosttech_dns.hosttech_dns_record
12+
namespace: ''
13+
- description: Retrieve entries in Hosttech DNS service
14+
name: felixfontein.hosttech_dns.hosttech_dns_record_info
15+
namespace: ''
16+
release_date: '2020-05-22'

galaxy.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ version: 1.0.0
44
readme: README.md
55
authors:
66
- Felix Fontein (https://github.com/felixfontein)
7-
description: null
8-
license: GPL-3.0-or-later
7+
description: Modules to create, delete and modify DNS entries with the Hosttech DNS API
98
license_file: COPYING
109
tags:
1110
- hosttech
@@ -16,5 +15,9 @@ documentation: https://github.com/felixfontein/ansible-hosttech_dns/tree/master/
1615
homepage: https://github.com/felixfontein/ansible-hosttech_dns
1716
issues: https://github.com/felixfontein/ansible-hosttech_dns/issues
1817
build_ignore:
19-
- 'felixfontein-hosttech_dns-*.tar.gz'
2018
- .gitignore
19+
- felixfontein-hosttech_dns-*.tar.gz
20+
- changelogs/.plugin-cache.yaml
21+
- playground
22+
- tests/output
23+
- tests/integration/integration_config.yml

plugins/modules/hosttech_dns_record.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
1515
short_description: Add or delete entries in Hosttech DNS service
1616
17+
version_added: 1.0.0
18+
1719
description:
1820
- "Creates and deletes DNS records in Hosttech DNS service U(https://ns1.hosttech.eu/public/api?wsdl)."
1921

plugins/modules/hosttech_dns_record_info.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
1515
short_description: Retrieve entries in Hosttech DNS service
1616
17+
version_added: 1.0.0
18+
1719
description:
1820
- "Retrieves DNS records in Hosttech DNS service U(https://ns1.hosttech.eu/public/api?wsdl)."
1921

0 commit comments

Comments
 (0)