Skip to content

Commit

Permalink
refactor(libmatchers): match default type with docs
Browse files Browse the repository at this point in the history
  • Loading branch information
stasjok committed Feb 15, 2022
1 parent 65cf22c commit 8f847be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions TEMPLATE/libmatchers.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
} %}

{#- When no part before `@` is provided: #}
{#- - define a filename path, noted `F` #}
{#- - define a YAML file path, noted `Y` #}
{#- - use `salt["config.get"]`, noted `C` #}
{#- - use colon `:` delimiter for querying #}
{%- set _defaults = {
"type": "F",
"type": "Y",
"query_type": "C",
"query_delimiter": ":"
} %}
Expand All @@ -28,11 +28,11 @@
) %}
{#- matcher format is `[<TYPE>[:<OPTION>[:DELIMITER]]@]<KEY>` #}
{#- each matcher has a type: #}
{#- - `F` to build a file name (the default when no type is set) #}
{#- - `Y` to build a YAML file name (the default when no type is set) #}
{#- - `C` to lookup values with `config.get` #}
{#- - `G` to lookup values with `grains.get` #}
{#- - `I` to lookup values with `pillar.get` #}
{#- The `FILE` type option can define query type to build the file name: #}
{#- The `YAML` type option can define query type to build the file name: #}
{#- - `C` for query with `config.get` (the default when to query type is set) #}
{#- - `G` for query with `grains.get` #}
{#- - `I` for query with `pillar.get` #}
Expand Down

0 comments on commit 8f847be

Please sign in to comment.