Skip to main content

Selectel DNS provider for octoDNS

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.2.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

octodns_selectel-0.99.2-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: octodns-selectel-0.99.2.tar.gz
  • Upload date:
  • Size: 13.7 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.2.tar.gz
Algorithm Hash digest
SHA256 79b568dc4614884361d528dcbf4e4709472e666e81261818f78f1b434c5ccf6e
MD5 9381427545c196050f6cacc8388d712a
BLAKE2b-256 9f26bd8ce1e855bcf9335843fe40e431f04fe1bb501c8ac78252943907634526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for octodns_selectel-0.99.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a4e5146c41367f37aa32fba697ce7ea5d3fedaa3e8a6ff03137454ecc130d6b3
MD5 5200235b66abd2e6f5075d90148ffd7b
BLAKE2b-256 0513876d1bbf8c82f061cee1fb4ee3bd21f5e81ac0b06f89f7d9bb2605236bf4

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