Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(doc): make folder_path_pattern usage more clear #12298

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,14 @@ class LookerDashboardSourceConfig(

folder_path_pattern: AllowDenyPattern = Field(
default=AllowDenyPattern.allow_all(),
description="Allow or deny dashboards from specific folders. "
description="Allow or deny dashboards from specific folders using their fully qualified paths. "
"For example: \n"
"deny: \n"
" - sales/deprecated \n"
"This pattern will deny the ingestion of all dashboards and looks within the sales/deprecated folder. \n"
"allow: \n"
" - sales/customers \n"
"This pattern will allow only the ingestion of dashboards within the sales/customers folder. \n"
"Dashboards will only be ingested if they're allowed by both this config and dashboard_pattern.",
)

Expand Down
Loading