
## Snowflake app image and versioning

URL: https://docs.atlan.com/apps/connectors/data-warehouses/snowflake/references/snowflake-app-image-and-versioning

> Identify the container image used for the Snowflake assets app, understand its versioning, and find the exact version assigned to your tenant.

This page identifies the container image used to run the Snowflake assets app on Self-Deployed Runtime (SDR). Use it as vendor, product, and version evidence when registering the software with a governance or procurement process.

## Snowflake assets app

The Snowflake assets app is distributed as a container image:

| Field | Value |
| ---------------------------- | --------------------------------------------------- |
| Vendor | Atlan |
| Product name | Snowflake assets app |
| Container image | `atlanhq/atlan-snowflake-app` |
| Registry | Docker Hub, under the private `atlanhq/*` namespace |
| Release identifier (version) | Image tag, for example, `2.1.1` |

The `atlanhq/atlan-snowflake-app` repository is private. Pulling the image requires the Docker Hub Personal Access Token (PAT) that your Atlan representative provides. The PAT is rotated periodically.

## How Snowflake app versioning works

The image tag is the official release identifier for the Snowflake assets app. Each tag is immutable and maps one-to-one to a specific build.

As of August 28, 2026, Snowflake release `v2.1.1` has an all-channel release record in Atlan's Global Marketplace. Its container image is `atlanhq/atlan-snowflake-app:2.1.1`.

Atlan releases aren't time-boxed, and releases can be assigned to tenants in cohorts. An all-channel release record doesn't mean every tenant is assigned that release at the same time.

Use the tenant-specific image reference in the next section for procurement, deployment, and mirroring. If the assigned version changes, update your governance record to match the new tag.

## Find exact version assigned to your tenant

Use the latest-releases endpoint to determine the source image reference that Atlan has assigned to your tenant.

This requires a valid [Atlan API token](https://docs.atlan.com/llms/governance/stewardship/manage-api-tokens/llms.txt):

```bash
curl -sS \
 -H "Authorization: Bearer $ATLAN_API_TOKEN" \
 "https://<your-tenant>.atlan.com/api/service/marketplace/latest-releases"
```

Find the release whose `app_name` identifies Snowflake. The `image` value is a `repo:tag` reference and is the exact source image assigned to your tenant at that time.

:::note
There is no single version that's correct for every tenant. Different tenants can be assigned different active release cohorts. The endpoint response, not the examples on this page, is the source of truth for your deployment.
:::

## Verify image

Atlan signs every SDR image with keyless Cosign. Before you deploy or mirror an image, verify its signature using the image reference returned for your tenant. See [Verify container images](https://docs.atlan.com/llms/platform/self-deployed-runtime/verify-container-images/llms.txt).

For private-registry guidance, see [Image procurement approach](https://docs.atlan.com/llms/platform/self-deployed-runtime/image-procurement/llms.txt) and [Keep private registry in sync](https://docs.atlan.com/llms/platform/self-deployed-runtime/mirror-images-to-private-registry/llms.txt).

---
