Skip to main content

Selectel DNS provider for octoDNS

Reason this release was yanked:

Broken modules resulting in missing files

Project description

Selectel DNS provider for octoDNS

An octoDNS provider that targets Selectel DNS.

Contents

Installation

Install Selectel plugin in your environment and octodns itself if it is not present.

pip install octodns octodns-selectel

Capabilities

What Value
Supported records A, AAAA, ALIAS, CNAME, MX, NS, SRV, SSHFP, TXT
Dynamic records

Configuration

Add selectel provider to config.yaml.

providers:
  selectel:
    class: octodns_selectel.SelectelProvider
    token: env/KEYSTONE_PROJECT_TOKEN

Set KEYSTONE_PROJECT_TOKEN environmental variable or write value directly in config without env/ prefix.
How to obtain required token you can read here

Quickstart

To get more details on configuration and capabilities check octodns repository

1. Organize your configs.

Project
└── .octodns
    ├── config.yaml
    └── zones
        ├── octodns-test-alias.com.yaml
        └── octodns-test.com.yaml

2. Fill octodns configuration file

# .octodns/config.yaml
providers:
  config:
    class: octodns.provider.yaml.YamlProvider
    directory: ./octodns/zones
    default_ttl: 3600
    enforce_order: True
  selectel:
    class: octodns_selectel.SelectelProvider
    token: env/KEYSTONE_PROJECT_TOKEN

zones:
  octodns-test.com.:
    sources:
      - config
    targets:
      - selectel
  octodns-test-alias.com.:
    sources:
      - config
    targets:
      - selectel

3. Prepare config for each of your zones

# .octodns/zones/octodns-test.com.yaml
'':
  - ttl: 3600
    type: A
    values:
      - 1.2.3.4
      - 1.2.3.5
  - ttl: 3600
    type: AAAA
    values: 
      - 6dc1:b9af:74ca:84e9:6c7c:5c0f:c292:9188
      - 5051:e345:9038:052c:00db:eb98:d871:8ae6
  - ttl: 3600
    type: MX
    value:
      exchange: mail1.octodns-test.com.
      preference: 10
  - ttl: 3600
    type: TXT
    values: 
      - "bar"
      - "foo"

_sip._tcp:
  - ttl: 3600
    type: SRV
    values:
    - port: 5060
      priority: 10
      target: phone1.example.com.
      weight: 60
    - port: 5030
      priority: 20
      target: phone2.example.com.
      weight: 0     

foo:
  - ttl: 3600
    type: CNAME
    value: bar.octodns-test.com.

sshfp:
  - ttl: 3600
    type: SSHFP
    values:
    - algorithm: 1
      fingerprint: "4158f281921260b0205508121c6f5cee879e15f22bdbc319ef2ae9fd308db3be"
      fingerprint_type: 2
    - algorithm: 4
      fingerprint: "123456789abcdef67890123456789abcdef67890123456789abcdef123456789"
      fingerprint_type: 2

txt:
  - ttl: 3600
    type: TXT
    values: 
      - "bar_txt"
      - "foo_txt"
# .octodns/zones/octodns-test-alias.com.yaml
'':
  - ttl: 3600
    type: ALIAS
    value: octodns-test.com.

4. Check and apply!

# Run config and check suggested changes
octodns-sync --config-file=.octodns/config.yaml
# Apply changes if everything is ok by adding
octodns-sync --config-file=.octodns/config.yaml --doit

Current provider vs. Legacy provider

Current provider is octodns_selectel.SelectelProvider
Legacy provider is octodns_selectel.SelectelProviderLegacy

They are not compatible. They utilize different API and created zones live on different authoritative servers. Zone created in v2 API with current provider is entirely new zone, and not available via v1 api and vice versa.

If you are going to create new zone, we strongly recommend to use SelectelProvider.
If you have zones in v1, you still can manage them with SelectelLegacyProvider.

If you updated plugin from unstable (0.x.x) version you should rename provider class in octodns config from SelectelProvider to SelectelLegacyProvider to work with legacy api.

Migration from legacy DNS API

If v1 API is still available for you and your zones are hosted there, then you probably would like to move your zones to v2. Legacy API will be eventually shutdown.
With octodns you can sync ALL your v1 zone with v2 by using both providers as in example below.
❗️IMPORTANT❗️
SELECTEL_TOKEN and KEYSTONE_PROJECT_TOKEN are different tokens!
Above we mentioned how to get keystone token, how to obtain selectel token read here

processors:
  # Selectel doesn't allow manage Root NS records
  # for skipping root ns use IgnoreRootNsFilter class
  no-root-ns:
    class: octodns.processor.filter.IgnoreRootNsFilter

providers:
  selectel_legacy:
    class: octodns_selectel.SelectelProviderLegacy
    token: env/SELECTEL_TOKEN
  selectel:
    class: octodns_selectel.SelectelProvider
    token: env/KEYSTONE_PROJECT_TOKEN

zones:
  # Using '*' to sync all zones available on account.
  "*":
    sources:
      - selectel_legacy
    processors:
    - no-root-ns
    targets:
      - selectel

Development

See the /script/ directory for some tools to help with the development process. They generally follow the Script 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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

octodns-selectel-0.99.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

octodns_selectel-0.99.0-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file octodns-selectel-0.99.0.tar.gz.

File metadata

  • Download URL: octodns-selectel-0.99.0.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for octodns-selectel-0.99.0.tar.gz
Algorithm Hash digest
SHA256 d753f38fcd5df2798ff56412850dd14bf371ab711c59451e0b95b61679afa592
MD5 c26ba73fbbfe5d9d7bfd2021166c7553
BLAKE2b-256 2ba4997f3c9f6b4ad926d68ca4c451b56d11f404a2d4b60872c9878bab3fdb6c

See more details on using hashes here.

File details

Details for the file octodns_selectel-0.99.0-py3-none-any.whl.

File metadata

File hashes

Hashes for octodns_selectel-0.99.0-py3-none-any.whl
Algorithm Hash digest
SHA256 722541e18eb18d4db9153e7083b6086e6e235141f2f0bcf8f1aff06726abda0b
MD5 6ae8677274d9ea8b0d160fd60fe1094d
BLAKE2b-256 a66c407fb3c386a22197afdf3729fa2155f25d06e85b1305ff4ca0d6dc55e707

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page