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.2-cp39-abi3-win_amd64.whl (9.9 MB view details)

Uploaded CPython 3.9+Windows x86-64

dynamic_config_py_remote-0.1.2-cp39-abi3-manylinux_2_28_x86_64.whl (12.2 MB view details)

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

dynamic_config_py_remote-0.1.2-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.2-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.2-cp39-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for dynamic_config_py_remote-0.1.2-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 ed3296c8dfaeea9ff68e76e3eeee04ea09ad3051d5b6a45a65156f700a0c8ebf
MD5 a380c0b8096d23366ac5390ee64cd563
BLAKE2b-256 bdc0c3778e66ec34642320e619ec4836565e2eecaaaf6239bf97f8331916d45f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dynamic_config_py_remote-0.1.2-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c25d03f96465a02ca8530efac8e70e2be16d4f3117de7d17eb2993ce4ca720b
MD5 64d4844dc0af8167163f8b849c543962
BLAKE2b-256 28b310073c57b3797aaf23fec95322576c828ac53d4826399e488926a477c1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dynamic_config_py_remote-0.1.2-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de3320e012bd91c0057d7e996543b34537a07caa3bfe980caf5f4fe5787dfe0c
MD5 f5ca186ce5bf379d8eaecf55ff6938c4
BLAKE2b-256 6bdc9fcf8547752e0f1e158f492ce2f39e9584486a70cec155c739b89d11f8c9

See more details on using hashes here.

File details

Details for the file dynamic_config_py_remote-0.1.2-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.2-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6ad91f39c59ee4e731ff9d960134ba3a0a9c4b6457f9c96cacaf2481947a07aa
MD5 3a4abf988e7a85be25bf320d71f2d556
BLAKE2b-256 641f2c14f20ba7744744b943105304eeef9ebc79f937284d48daf855627ef57d

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