Update Snowflake hostname configuration docs#686
Open
HarshCasper wants to merge 1 commit into
Open
Conversation
Deploying localstack-docs with
|
| Latest commit: |
cd64ed9
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://997480c4.localstack-docs.pages.dev |
| Branch Preview URL: | https://doc-264-doc-featurecustom-ss.localstack-docs.pages.dev |
hovaesco
approved these changes
Jun 2, 2026
| | `SF_AWS_ENDPOINT_URL` | `localhost:4566` (default) | AWS services endpoint for connecting to other AWS services (SQS, SNS, etc.) from the Snowflake emulator. | | ||
| | `DNS_NAME_PATTERNS_TO_RESOLVE_UPSTREAM` | `*.s3.amazonaws.com` (example) | List of domain names that should NOT be resolved to the LocalStack container, but instead always forwarded to the upstream resolver (S3 for example). this would be required when importing data into a stage from an external S3 bucket on the real AWS cloud. Comma-separated list of Python-flavored regex patterns. | | ||
| | `SF_HOSTNAME_REGEX` | `snowflake\..+` (default) | Allows you to customize the hostname used for matching the Snowflake API routes in the HTTP router. If not set, then it matches on any hostnames that contain a `snowflake.*` subdomain (e.g., `snowflake.localhost.localstack.cloud`). | | ||
| | `SF_HOSTNAMES` | `snowflake.localhost.localstack.cloud,snowflake.internal` | Comma-separated list of hostnames that should route to the Snowflake emulator. If set, only these hostnames are matched. If unset, LocalStack keeps matching the default `*.snowflake.*` hostnames for backward compatibility. | |
Contributor
There was a problem hiding this comment.
the code default is only snowflake.localhost.localstack.cloud
Contributor
There was a problem hiding this comment.
please amend the last sentence slightly to something like:
If unset, LocalStack also matches any hostname with a snowflake. subdomain i.e. snowflake.* or *.snowflake.* for backward compatibility.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes DOC-264