@@ -65,6 +65,14 @@ adobe_users:
6565 # location of this configuration file, not relative to the
6666 # working directory of your User Sync process.
6767 umapi : " connector-umapi.yml"
68+ # An alternate form for referencing the umapi configuration allows for storage
69+ # of the umapi credentials in a secure way:
70+ # umapi: $(cat connector-umapi.yml) # This runs the indicated command and uses
71+ # the output as the configuration file. In this example we are simply
72+ # echoing the file contents so it is no more secure than the other form
73+ # of file reference. To make it more secure, you need to provide a
74+ # command or script that fetches the data from a secure source.
75+ # ("cat" would need to be "type" on a Windows platform.)
6876
6977# The directory_users section controls how enterprise-side users are accessed,
7078# sets default values for attributes not specified in the enterprise directory,
@@ -122,6 +130,14 @@ directory_users:
122130 # location of this configuration file, not relative to the
123131 # working directory of your User Sync process.
124132 ldap : " connector-ldap.yml"
133+ # An alternate form for referencing the ldap configuration allows for storage
134+ # of the ldap credentials in a secure way:
135+ # ldap: $(cat connector-ldap.yml) # This form runs the indicated command and uses
136+ # the output as the configuration file. In this example we are simply
137+ # echoing the file contents so it is no more secure than the other form
138+ # of file reference. To make it more secure, you need to provide a
139+ # command or script that fetches the data from a secure source.
140+ # ("cat" would need to be "type" on a Windows platform.)
125141
126142 # (optional) csv (no default value)
127143 # csv stands for "comma-separated values", which is the most common form
0 commit comments