Skip to content

Commit

Permalink
Merge pull request #28 from opendatadiscovery/fix_filters_templating
Browse files Browse the repository at this point in the history
Fix schema naming patterns quotes escaping
  • Loading branch information
ValeriyWorld authored Jun 5, 2024
2 parents 2cc986a + 380c0c1 commit 05835cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions manifests/postgresql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ blocks:
user: {{ plugin_user }}
password: <Password for {{ plugin_user }}>
schemas_filter:
include: {{ include_patterns }}
exclude: {{ exclude_patterns }}
include: [{{ include_patterns|safe }}]
exclude: [{{ exclude_patterns|safe }}]
````
arguments:
- parameter: platform_url
Expand All @@ -113,7 +113,7 @@ blocks:
type: STRING
- parameter: include_patterns
name: Schema name patterns to include
type: LIST[STRING]
type: STRING
- parameter: exclude_patterns
name: Schema name patterns to exclude
type: LIST[STRING]
type: STRING
8 changes: 4 additions & 4 deletions manifests/snowflake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ blocks:
database: {{ plugin_database }}
warehouse: {{ plugin_warehouse }}
schemas_filter:
include: {{ include_patterns }}
exclude: {{ exclude_patterns }}
include: [{{ include_patterns|safe }}]
exclude: [{{ exclude_patterns|safe }}]
````
arguments:
- parameter: platform_url
Expand Down Expand Up @@ -148,7 +148,7 @@ blocks:
type: STRING
- parameter: include_patterns
name: Schema name patterns to include
type: LIST[STRING]
type: STRING
- parameter: exclude_patterns
name: Schema name patterns to exclude
type: LIST[STRING]
type: STRING

0 comments on commit 05835cc

Please sign in to comment.