Skip to content

Commit c3c1fd8

Browse files
committed
Fixed Okta Sample configuration documentation
1 parent 21fe4ce commit c3c1fd8

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

examples/config files - basic/5 connector-okta.yml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,17 @@ all_users_filter: 'user.status == "ACTIVE"'
5151
# There is no default value for this setting, because most directories don't contain
5252
# users with different identity types (so setting the default identity type suffices).
5353
# If your directory contains users of different identity types, you should define
54-
# this field to look at the value of an appropriate attribute in your directory.
55-
# For example, if your directory attribute "idType" had one of the values
54+
# this field to look at the value of an appropriate attribute in your okta user profile.
55+
# For example, if your Okta user profile attribute "idType" had one of the values
5656
# adobe, enterprise, or federated in it for each user, you could use:
5757
#user_identity_type_format: "{idType}ID"
5858

5959
# (optional) user_email_format (default value given below)
6060
# user_email_format specifies how to construct a user's email address by
61-
# combining constant strings with the values of specific directory attributes.
61+
# combining constant strings with the values of specific Okta profile attributes.
6262
# Any names in curly braces are taken as attribute names, and everything including
6363
# the braces will be replaced on a per-user basis with the values of the attributes.
64-
# The default value used here is simple, and suitable for OpenLDAP systems. If you
65-
# are using a non-email-aware AD system, which holds the username separately
66-
# from the domain name, you may want: "{sAMAccountName}@mydomain.com"
64+
# The default value is from "email" field in Okta user profile.
6765
# NOTE: for this and every format setting, the constant strings must be in
6866
# the encoding specified by the string_encoding setting, above.
6967
user_email_format: "{email}"
@@ -89,30 +87,30 @@ user_email_format: "{email}"
8987

9088
# (optional) user_given_name_format (default value given below)
9189
# user_given_name_format specifies how to construct a user's given name by
92-
# combining constant strings with the values of specific directory attributes.
90+
# combining constant strings with the values of specific Okta profile attributes.
9391
# Any names in curly braces are taken as attribute names, and everything including
9492
# the braces will be replaced on a per-user basis with the values of the attributes.
95-
# The default value used here is simple, and suitable for OpenLDAP systems.
93+
# The default value is from "firstName" field in Okta user profile..
9694
# NOTE: for this and every format setting, the constant strings must be in
9795
# the encoding specified by the string_encoding setting, above.
9896
#user_given_name_format: "{firstName}"
9997

10098
# (optional) user_surname_format (default value given below)
10199
# user_surname_format specifies how to construct a user's surname by
102-
# combining constant strings with the values of specific directory attributes.
100+
# combining constant strings with the values of specific Okta profile attributes.
103101
# Any names in curly braces are taken as attribute names, and everything including
104102
# the braces will be replaced on a per-user basis with the values of the attributes.
105-
# The default value used here is simple, and suitable for OpenLDAP systems.
103+
# The default value is from "lastName" field in Okta user profile.
106104
# NOTE: for this and every format setting, the constant strings must be in
107105
# the encoding specified by the string_encoding setting, above.
108106
#user_surname_format: "{lastName}"
109107

110108
# (optional) user_country_code_format (default value given below)
111109
# user_country_code_format specifies how to construct a user's country code by
112-
# combining constant strings with the values of specific directory attributes.
110+
# combining constant strings with the values of specific Okta profile attributes.
113111
# Any names in curly braces are taken as attribute names, and everything including
114112
# the braces will be replaced on a per-user basis with the values of the attributes.
115-
# The default value used here is simple, and suitable for OpenLDAP systems.
113+
# The default value is from "countryCode" field in Okta user profile.
116114
# NOTE: for this and every format setting, the constant strings must be in
117115
# the encoding specified by the string_encoding setting, above.
118-
#user_country_code_format: "{countryCode}"
116+
#user_country_code_format: "{countryCode}"

0 commit comments

Comments
 (0)