https://github.com/aziontech/octodns-azion
Azion DNS provider for octoDNS
https://github.com/aziontech/octodns-azion
Last synced: about 1 month ago
JSON representation
Azion DNS provider for octoDNS
- Host: GitHub
- URL: https://github.com/aziontech/octodns-azion
- Owner: aziontech
- License: mit
- Created: 2025-07-05T18:13:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-06-08T19:11:44.000Z (about 2 months ago)
- Last Synced: 2026-06-08T20:25:23.413Z (about 2 months ago)
- Language: Python
- Size: 81.1 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## Azion DNS provider for octoDNS
An [octoDNS](https://github.com/octodns/octodns/) provider that targets [DNS](https://api.azion.com/).
### Installation
#### Command line
```
pip install octodns-azion
```
#### requirements.txt/setup.py
Pinning specific versions or SHAs is recommended to avoid unplanned upgrades.
##### Versions
```
# Start with the latest versions and don't just copy what's here
octodns==1.19.0
octodns-azion==1.2.0
```
##### SHAs
```
# Start with the latest/specific versions and don't just copy what's here
-e git+https://git@github.com/octodns/octodns.git@07c72e5a2f52a87b94fecf5c18697b16832253b0#egg=octodns
-e git+https://git@github.com/aziontech/octodns-azion.git@29197e11e2f2b8783b13863986fae86ec78347a4#egg=octodns_azion
```
## Configuration
```yaml
providers:
azion:
class: octodns_azion.AzionProvider
# Your Azion API token (required)
token: env/AZION_TOKEN
```
## Support Information
### Records
AzionProvider supports A, AAAA, ALIAS (ANAME), CAA, CNAME, MX, NS, PTR, TXT, and SRV record types.
### Root NS Records
AzionProvider does not support root NS record management.
### Dynamic
AzionProvider does not support dynamic records.
### Development
Python 3.10 or newer is required.
See the [/script/](/script/) directory for some tools to help with the development process. They generally follow the [Script to rule them all](https://github.com/github/scripts-to-rule-them-all) pattern. Most useful is `./script/bootstrap` which will create a venv and install both the runtime and development related requirements. It will also hook up a pre-commit hook that covers most of what's run by CI.