chore(docs): Document new IPs for allowlisting#322
Merged
Conversation
Contributor
📝 WalkthroughWalkthrough
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes 🚥 Pre-merge checks | ✅ 3 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #322 +/- ##
=======================================
Coverage 83.43% 83.43%
=======================================
Files 114 114
Lines 6980 6980
Branches 1864 1864
=======================================
Hits 5824 5824
Misses 1156 1156 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
saltenasl
approved these changes
Feb 23, 2026
Contributor
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/snowflake.md`:
- Around line 108-120: The ALTER NETWORK POLICY statement is using ARRAY
functions and bracket literals which Snowflake rejects; update the ALTER NETWORK
POLICY your_existing_policy SET ALLOWED_IP_LIST assignment to use a
parenthesized, comma-separated list of string literals (e.g., SET
ALLOWED_IP_LIST = ('ip1','ip2',...)) instead of ARRAY_CAT/ARRAY_DISTINCT or
[...] literals, and if you intended to append rather than replace first retrieve
the current entries via DESC NETWORK POLICY or
SNOWFLAKE.ACCOUNT_USAGE.NETWORK_POLICIES and include them in the new
parenthesized list passed to ALLOWED_IP_LIST.
ℹ️ Review info
Configuration used: Organization UI
Review profile: ASSERTIVE
Plan: Pro
Disabled knowledge base sources:
- Linear integration is disabled
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (2)
docs/securing-connections.mddocs/snowflake.md
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.
also reformatted Snowflake SQL snippets to make them more readable (without horizontal scrolling) and fixed example for altering network policy
Summary by CodeRabbit