Skip to main content

dynamic-config-py-remote

All eight Rust remote stores — Consul, etcd, Firestore, git, NATS, Redis, S3 and HashiCorp Vault — for dynamic-config-py.

pip install dynamic-config-py[remote]
from dataclasses import dataclass

from dynamic_config import DynamicConfig
from dynamic_config.remote import Auth, Etcd, Vault


@dataclass
class Database:
    host: str = "localhost"
    port: int = 5432


config = DynamicConfig(Database, key="db").remote(
    Etcd(["http://etcd.internal:2379"], "myapp/db.json")
)
config.refresh_remote()      # reads the store, keeps the document
config.init()                # merges it, validates, installs

db = config.current()

Configuration in git, which is where a great many teams already keep it — one commit, one tree, so a set of files is read as of one instant:

from dynamic_config.remote import Git, GitAuth, GitKeys

config = DynamicConfig(Database, key="db").remote(
    Git(
        "https://github.com/acme/config.git",
        GitKeys.several(["services/api/base.yaml", "services/api/local.yaml"]),
        branch="main",
        # An installation token lives an hour; a watcher lives for the life
        # of the process. So the credential is a callable, and a rotated one
        # rebuilds nothing — the object database survives it.
        auth=GitAuth.token(mint_an_installation_token),
    )
)

Vault, with a credential that outlives the process that started:

from pathlib import Path

config = DynamicConfig(Database, key="db").remote(
    Vault(
        "https://vault.internal:8200",
        "secret",
        "myapp/db",
        auth=Auth.token(lambda: Path("/var/run/vault/token").read_text()),
    )
)

Why this is a second wheel

A wheel is built per platform, so a dependency in the ordinary wheel is in every install of it — including the ones reading a single TOML file. etcd speaks gRPC, the AWS SDK brings its own runtime and signing stack, NATS brings a protocol, git brings gix and three more bring HTTP over rustls: eight clients is most of an async ecosystem. They stay out until somebody asks for them.

A pip extra installs distributions, not Cargo features: a wheel compiled weeks ago on a release runner cannot have a feature turned on at install time. So dynamic-config-py[remote] resolves to this distribution, which contains the same engine built with the stores in it.

What it is not

It is not a second binding. These stores are ordinary dynamic_config.RemoteSource implementations — they answer fetch() with a (document, format) pair, and the base wheel merges it through the path it already had for a store written in Python. Nothing Rust crosses between the two extension modules, which is why the base wheel needed no change to accept these.

Credentials

Every credential argument accepts a callable, and that is the feature rather than a convenience: a configuration watcher outlives its credentials. A Vault token expires, an AppRole secret id is rewritten by a sidecar, an etcd password is rotated. A callable is invoked on every fetch, and a value that has changed rebuilds the client with it.

Etcd(["http://etcd:2379"], "myapp/db.json",
     user="myapp", password=lambda: os.environ["ETCD_PASSWORD"])

Auth.app_role(role_id, secret_id=lambda: read_secret_id())

Redis("redis://redis:6379", "myapp/db.json", password=lambda: read_password())

S3("myapp-config", "prod/db.json", access_key_id=lambda: current_key_id(),
   secret_access_key=lambda: current_secret())

S3 is the one whose credential is not a string. The AWS SDK takes a ProvideCredentials implementation and asks it per request, so a callable becomes a shim over a slot the fetch path writes — which means a rotated key rebuilds nothing, and which is also why passing no credentials at all is a first-class mode: the SDK's own chain (environment, profile, instance role, IRSA) is what most deployments should use.

Credentials never appear in a diagnostic — not in an exception message, not in a repr, not in describe(). A store URL that embeds user:password@host loses the password by the same rule the Rust store crates use, and every credential resolved for a call is scrubbed by value from anything that call reports.

TLS

A private certificate authority and a client certificate, spelled the same way for all eight stores:

Vault("https://vault.internal:8200", "secret", "myapp/db",
      auth=Auth.kubernetes("myapp"),
      tls=TlsConfig()
          .with_ca_certificate_file("/etc/ssl/private-ca.pem")
          .with_client_certificate_files("/etc/ssl/app.crt", "/etc/ssl/app.key"))

Each setting has a file spelling and a PEM-bytes one, because a Kubernetes secret mount produces files and a secrets manager produces bytes — and writing bytes to a temporary file so a client could read them back would put a private key on a disk that never asked for one. An empty TlsConfig is the platform's own trust store; a named authority replaces it, which is what pinning means.

Two stores cannot express all of it and refuse the part they cannot, at construction, naming the call and the way out. Nats takes certificate paths and not bytes (async-nats opens the files itself) and S3 takes no client certificate (the AWS SDK's TLS context has no slot for one). Ignoring either would leave a program believing it had pinned an authority when it had not. Git expresses all four settings and refuses them on a url that is not https://, because an ssh remote's trust lives in known_hosts; it is also the one store that adds a named authority to the platform's trust store rather than replacing it.

The private key is never rendered: repr() delegates to the Rust type's Debug, which prints a path where there is one and <redacted> where the key is bytes.

The tokio runtime

One, lazily, owned by the module. It starts when the first store that needs one is constructed — Etcd, Nats and S3 do; Consul, Firestore, Git, Redis and Vault are blocking and do not — and never shuts down; dynamic_config_remote.runtime_started() is how that promise is tested. Nothing running on it touches Python, which is what makes an immortal runtime safe here. See the book's Remote stores in Rust, from Python.

Which stores

All eight, one Python class each: Consul, Etcd, Firestore, Git, Nats, Redis, S3 and Vault, with ConsulAuth, FirestoreAuth, GitAuth, NatsAuth and Auth (Vault's) for the ones that log in, GitKeys for the one that reads a set, and TlsConfig for all of them. What is deliberately not here — each client's own configuration type, and with it a custom proxy; the multi-key forms for the seven that are not git; watch() — is listed in the book, with the reason in each case.

License

MIT

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dynamic_config_py_remote-0.1.1-cp39-abi3-win_amd64.whl (9.9 MB view details)

Uploaded CPython 3.9+Windows x86-64

dynamic_config_py_remote-0.1.1-cp39-abi3-manylinux_2_28_x86_64.whl (12.1 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ x86-64

dynamic_config_py_remote-0.1.1-cp39-abi3-manylinux_2_28_aarch64.whl (13.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

dynamic_config_py_remote-0.1.1-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (21.9 MB view details)

Uploaded CPython 3.9+macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file dynamic_config_py_remote-0.1.1-cp39-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for dynamic_config_py_remote-0.1.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 14c537bbb63441a52ff6df38ed96e0ba3d25c77cf52c7ead941653f14af63f10
MD5 41264c546156f81ed92c70639fc5413f
BLAKE2b-256 688add6fb2ef4f6c4d10bb68886360c374deafc8a4d56c26f9eff988372b6a12

See more details on using hashes here.

File details

Details for the file dynamic_config_py_remote-0.1.1-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dynamic_config_py_remote-0.1.1-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21a3511cd915a2f35c5e6a86df07a456649b8b1d74974d30ba7024b1bd9e421b
MD5 2c33b1a1be583ec813907f0624bc55f2
BLAKE2b-256 31cc3174436dd088ff30d9533e26715961bb57002852fd93996286f272ee997b

See more details on using hashes here.

File details

Details for the file dynamic_config_py_remote-0.1.1-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dynamic_config_py_remote-0.1.1-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90a0e5472afe30e0a4beecfa081bee309f76a7761b7c4c4d5c825c75affaa456
MD5 1d0d2f4cb58608bc8dd43bc9d50c017c
BLAKE2b-256 fee68f63bf25a67b882cedf71ffd871dc5a532224889c587feec137cb23ceb8e

See more details on using hashes here.

File details

Details for the file dynamic_config_py_remote-0.1.1-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for dynamic_config_py_remote-0.1.1-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 183326eee05b20f750c746a93f9486347481e605e9fdaaa2dd839fc3f3bd8d10
MD5 8b0871f752d66e6ce4c60deb4b73d3c0
BLAKE2b-256 c93fb8bfa76e2891494d5796022bc592e7930171aa8f72e2e2ef308bdb7290df

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page