Skip to main content

Drop, create and alter Snowflake objects and set permissions with Permifrost

Project description

tundri Logo

tundri is a Python package to declaratively create, drop, and alter Snowflake objects and manage their permissions with Permifrost.

Motivation

Permifrost is great at managing permissions, but it doesn't create or alter objects. As GitLab's data team handbook states:

Object creation and deletion is not managed by permifrost

With only Permifrost, one would have to manually create the objects and then run Permifrost to set the permissions. This is error prone and time consuming. That is where tundri comes in.

In a nutshell

tundri reads the Permifrost spec file and compares with the current state of the Snowflake account. It then creates, drops, and alters the objects to match. It leverages Permifrost's YAML meta tags to set attributes like default_role for users and warehouse_size for warehouses. Once the objects are created, tundri runs Permifrost to set the permissions.

Reconciliation logic

tundri compares the desired state (spec) with the current Snowflake state and generates the minimum set of DDL statements needed:

Scenario Action
Object in spec, not in Snowflake CREATE
Object in Snowflake, not in spec DROP
Object in both, params changed ALTER ... SET ...
Param removed from spec, has value in Snowflake ALTER ... UNSET ...

[!NOTE] Schemas are never dropped — tundri only creates them.

[!NOTE] When a param (e.g. rsa_public_key, comment, default_warehouse) is removed from the spec but still has a non-empty value in Snowflake, tundri generates an ALTER ... UNSET <param> statement to reset it to the Snowflake default. Params with no value in Snowflake are silently ignored.

Getting started

Prerequisites

  • Credentials to a Snowflake user account with the securityadmin role
  • A Permifrost spec file

Install

pip install tundri

Configure

Permifrost

Add a valid Permifrost spec file to your repository. You can use the files in the examples folder as reference.

Snowflake

Set up your Snowflake connection details in the environment variables listed below.

[!TIP] You can use a .env file to store your credentials. Place it in the same folder as the Permifrost spec file.

PERMISSION_BOT_ACCOUNT=abc134.west-europe.azure  # Your account identifier
PERMISSION_BOT_USER=PERMIFROST
PERMISSION_BOT_PASSWORD=...
PERMISSION_BOT_ROLE=SECURITYADMIN    # Permifrost requires it to be `SECURITYADMIN`
PERMISSION_BOT_DATABASE=PERMIFROST
PERMISSION_BOT_WAREHOUSE=ADMIN

Usage

The run subcommand is going to drop/create objects and run Permifrost.

Dry run

tundri run --permifrost_spec_path examples/permifrost.yml --dry

Normal run

tundri run --permifrost_spec_path examples/permifrost.yml

Getting help

tundri --help

Development

Local setup

Install the development dependencies

uv sync

Run tests

Run the tests

uv run pytest -v

Formatting

Run the command below to format the code

uv run black .

Testing locally

Dry run with the example spec file

uv run tundri run --dry -p examples/permifrost.yml

Contributing

Release process

The release process is automated using GitHub Actions. Here's how it works:

  1. Adding new features or bug fixes

    • PR tests run automatically to verify the changes on each PR
    • Multiple PRs can be merged to main until a release-ready state is reached
  2. Initiating a Release

    • A maintainer triggers the manual release workflow
    • They specify the version bump type (major, minor, or patch)
    • This creates a release branch and PR with updated version
  3. Release Creation

    • When the release PR is merged to main:
      • A Git tag is created (e.g., v1.2.3)
      • A GitHub release is created
      • The package is published to PyPI

The process requires the following GitHub secrets to be configured:

  • PYPI_API_TOKEN: For production PyPI publishing
  • TEST_PYPI_API_TOKEN: For TestPyPI publishing
  • SNOWFLAKE_*: Snowflake credentials for running tests

For full details on the release workflow, see RELEASE_WORKFLOW.md.

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

tundri-1.4.2.tar.gz (438.6 kB view details)

Uploaded Source

Built Distribution

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

tundri-1.4.2-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file tundri-1.4.2.tar.gz.

File metadata

  • Download URL: tundri-1.4.2.tar.gz
  • Upload date:
  • Size: 438.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for tundri-1.4.2.tar.gz
Algorithm Hash digest
SHA256 7737480900a4940392196fa8d3d30387012794809350487a29ad7fb43a61e672
MD5 be79072f577a81e7705f13035e18ba11
BLAKE2b-256 8bd7b5f18787bb4fca74b755fc34aa1795b6c6bc1e20cd0ea99d56eb35628bce

See more details on using hashes here.

File details

Details for the file tundri-1.4.2-py3-none-any.whl.

File metadata

  • Download URL: tundri-1.4.2-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for tundri-1.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f2fa4a41e0426bacec8821a50358311e52824afcca08132381361c238a1d1ddb
MD5 0d410a06a7e8cab0d064ba9f2b8c069a
BLAKE2b-256 540653d984dde3ede95079d1716a41b0b3020cbacca413e0bf302db1398163b5

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 Pingdom Monitoring Sentry Error logging StatusPage Status page