docs: add IP restriction guide (organization, folder, application)#130
Merged
Conversation
Document the organization- and folder-level IP allowlist Terraform resources (tailor_organization_ip_restriction, tailor_organization_folder_ip_restriction, provider >= 2.16.0) alongside the existing application-level AllowedIPAddresses setting, and explain their AND composition. Cross-link from the application guide and the administration index.
jackchuka
marked this pull request as ready for review
June 8, 2026 08:20
anukiransolur
approved these changes
Jun 8, 2026
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.
Summary
Adds a new IP Restriction guide under Administration documenting how to restrict access by client IP across the account hierarchy. This was previously only discoverable in the Terraform provider registry, not on docs.tailor.tech.
Covers all three layers:
tailor_organization_ip_restriction(Terraform, provider>= 2.16.0)tailor_organization_folder_ip_restriction(Terraform, provider>= 2.16.0)AllowedIPAddresses(app manifest)The layers compose with AND — a request must satisfy every configured layer. This is sourced from the provider docs.
Changes
docs/administration/ip-restriction.md— guide with HCL examples and argument tables for the org- and folder-level resources, plus the layering/AND-composition explanation.docs/administration/index.md— link the new page from the Administration index.docs/guides/application.md— cross-link from the existingAllowedIPAddressesentry.Verification
pnpm lint✅ (no new issues)pnpm build✅ (page renders, in sitemap)oxfmton the new file ✅Note for reviewers
The provider docs state AND composition explicitly for organization + folder. The guide extends "applies on top of" to the application layer as well — the consistent reading, but not verbatim in the source docs. Please confirm application-level composition behaves the same before merge.