|
8 | 8 | # this sample and then customizing it. Feel free to remove extraneous commentary
|
9 | 9 | # when you do your customization; doing so can greatly increase legibility.
|
10 | 10 |
|
11 |
| -# The invocation_defaults section controls the default values used |
12 |
| -# for command-line arguments. (Of course, these cannot be used to |
13 |
| -# change defaults for how the configuration files are read.) This |
14 |
| -# entire section is optional, as are each of its entries. But once |
15 |
| -# you standardize on specific argument values for all your runs, |
16 |
| -# putting them here can be an easy way to reliably use them, even |
17 |
| -# when running interactively rather than from a script. |
18 |
| -# |
19 |
| -# For arguments that take multiple arguments, such as --connector |
20 |
| -# and --users, the two-argument case should be specified as a list, |
21 |
| -# either using yaml compact notation: |
22 |
| -# connector: [csv, users-file.csv] |
23 |
| -# or using yaml multi-line notation: |
24 |
| -# connector: |
25 |
| -# - csv |
26 |
| -# - users-file.csv |
27 |
| -# The one-argument case can either use a string: |
28 |
| -# connector: ldap |
29 |
| -# or a compact list of one value: |
30 |
| -# connector: [ldap] |
31 |
| -# or a multi-line list of one value: |
32 |
| -# connector: |
33 |
| -# - ldap |
34 |
| -# |
35 |
| -# For arguments that are booleans, yaml syntax allows specifying their |
36 |
| -# default values using either True/False or Yes/No (case insensitive). |
37 |
| -# |
38 |
| -# If you specify filenames as part of your default values, they |
39 |
| -# are treated as if they were specified on the command line; that is, |
40 |
| -# they are interpreted relative to the User Sync current directory |
41 |
| -# (rather than the directory containing the configuration file). |
42 |
| -invocation_defaults: |
43 |
| - # For argument --adobe-only-user-action, the default is 'preserve'. |
44 |
| - adobe_only_user_action: preserve |
45 |
| - # For argument --adobe-only-user-list, the default is empty (no value). |
46 |
| - adobe_only_user_list: |
47 |
| - # For argument --connector, the default is 'ldap'. |
48 |
| - connector: ldap |
49 |
| - # For argument --process-groups, the default is False (don't process). |
50 |
| - # If you set this default to True, you can supply the argument |
51 |
| - # --no-process-groups to override the default. |
52 |
| - process_groups: No |
53 |
| - # For argument --strategy, the default is 'sync'. |
54 |
| - strategy: sync |
55 |
| - # For argument --test-mode (or -t), the default is False (live run). |
56 |
| - # if you set this default to True, you can supply the argument |
57 |
| - # --no-test-mode (or -T) to override the default. |
58 |
| - test_mode: No |
59 |
| - # For argument --update-user-info, the default is False (don't update). |
60 |
| - # If you set this default to True, you can supply the argument |
61 |
| - # --no-update-user-info to override the default. |
62 |
| - update_user_info: No |
63 |
| - # For argument --user-filter, the default is empty (no value). |
64 |
| - # Because regular expression notation uses special characters, |
65 |
| - # any default you set should almost certainly be single-quoted. |
66 |
| - user_filter: |
67 |
| - # For argument --users, the default is 'all'. |
68 |
| - users: all |
69 |
| - |
70 | 11 | # The adobe_users section controls connection to the Adobe UM API endpoints
|
71 | 12 | # and also which users on the Adobe side are eligible to be updated.
|
72 | 13 | adobe_users:
|
@@ -304,3 +245,62 @@ logging:
|
304 | 245 | # This determines the detail level of the information logged to standard output.
|
305 | 246 | # See the description of file_log_level for details of the allowed values.
|
306 | 247 | console_log_level: info
|
| 248 | + |
| 249 | +# The invocation_defaults section controls the default values used |
| 250 | +# for command-line arguments. (Of course, these cannot be used to |
| 251 | +# change defaults for how the configuration files are read.) This |
| 252 | +# entire section is optional, as are each of its entries. But once |
| 253 | +# you standardize on specific argument values for all your runs, |
| 254 | +# putting them here can be an easy way to reliably use them, even |
| 255 | +# when running interactively rather than from a script. |
| 256 | +# |
| 257 | +# For arguments that take multiple arguments, such as --connector |
| 258 | +# and --users, the two-argument case should be specified as a list, |
| 259 | +# either using yaml compact notation: |
| 260 | +# connector: [csv, users-file.csv] |
| 261 | +# or using yaml multi-line notation: |
| 262 | +# connector: |
| 263 | +# - csv |
| 264 | +# - users-file.csv |
| 265 | +# The one-argument case can either use a string: |
| 266 | +# connector: ldap |
| 267 | +# or a compact list of one value: |
| 268 | +# connector: [ldap] |
| 269 | +# or a multi-line list of one value: |
| 270 | +# connector: |
| 271 | +# - ldap |
| 272 | +# |
| 273 | +# For arguments that are booleans, yaml syntax allows specifying their |
| 274 | +# default values using either True/False or Yes/No (case insensitive). |
| 275 | +# |
| 276 | +# If you specify filenames as part of your default values, they |
| 277 | +# are treated as if they were specified on the command line; that is, |
| 278 | +# they are interpreted relative to the User Sync current directory |
| 279 | +# (rather than the directory containing the configuration file). |
| 280 | +invocation_defaults: |
| 281 | + # For argument --adobe-only-user-action, the default is 'preserve'. |
| 282 | + adobe_only_user_action: preserve |
| 283 | + # For argument --adobe-only-user-list, the default is empty (no value). |
| 284 | + adobe_only_user_list: |
| 285 | + # For argument --connector, the default is 'ldap'. |
| 286 | + connector: ldap |
| 287 | + # For argument --process-groups, the default is False (don't process). |
| 288 | + # If you set this default to True, you can supply the argument |
| 289 | + # --no-process-groups to override the default. |
| 290 | + process_groups: No |
| 291 | + # For argument --strategy, the default is 'sync'. |
| 292 | + strategy: sync |
| 293 | + # For argument --test-mode (or -t), the default is False (live run). |
| 294 | + # if you set this default to True, you can supply the argument |
| 295 | + # --no-test-mode (or -T) to override the default. |
| 296 | + test_mode: No |
| 297 | + # For argument --update-user-info, the default is False (don't update). |
| 298 | + # If you set this default to True, you can supply the argument |
| 299 | + # --no-update-user-info to override the default. |
| 300 | + update_user_info: No |
| 301 | + # For argument --user-filter, the default is empty (no value). |
| 302 | + # Because regular expression notation uses special characters, |
| 303 | + # any default you set should almost certainly be single-quoted. |
| 304 | + user_filter: |
| 305 | + # For argument --users, the default is 'all'. |
| 306 | + users: all |
0 commit comments