|
9 | 9 | # While you are at it, you will likely want to remove a lot of this commentary, |
10 | 10 | # in order to enhance the readability of your file. |
11 | 11 |
|
| 12 | +authentication_method: oauth |
| 13 | + |
| 14 | +# (optional) ssl_verify |
| 15 | +# Allows you to disable the SSL verification used by the requests module. This can |
| 16 | +# come in handy for troubleshooting or working around network / proxy related issues when |
| 17 | +# the following error is encountered: |
| 18 | +# 'UMAPI connection to org id failed: [SSL: CERTIFICATE_VERIFY_FAILED]' |
| 19 | +# It is recommended to leave this set to default (True), since it leaves UST potentially |
| 20 | +# vulnerable to middle man attacks and set to False only if absolutely needed. |
| 21 | + |
12 | 22 | # (optional) UMAPI server settings (defaults as shown) |
13 | 23 | # The host and endpoint settings specify the Adobe endpoints which |
14 | 24 | # host the UMAPI services and those which provide authorization. |
|
19 | 29 | # alternate values by Adobe as part of a support engagement. It is |
20 | 30 | # highly recommended that you leave these values commented out |
21 | 31 | # so that the default values are guaranteed to be used. |
22 | | - |
23 | | -# (optional) ssl_verify |
24 | | -# Allows you to disable the SSL verification used by the requests module. This can |
25 | | -# come in handy for troubleshooting or working around network / proxy related issues when |
26 | | -# the following error is encountered: |
27 | | - |
28 | | -# 'UMAPI connection to org id failed: [SSL: CERTIFICATE_VERIFY_FAILED]' |
29 | | - |
30 | | -# It is recommended to leave this set to default (True), since it leaves UST potentially |
31 | | -# vulnerable to middle man attacks and set to False only if absolutely needed. |
32 | 32 | server: |
33 | 33 | #host: usermanagement.adobe.io |
34 | 34 | #endpoint: /v2/usermanagement |
35 | | - #ims_host: ims-na1.adobelogin.com |
36 | | - #ims_endpoint_jwt: /ims/exchange/jwt |
| 35 | + #auth_host: ims-na1.adobelogin.com |
| 36 | + #auth_endmpoint: /ims/exchange/jwt |
37 | 37 | #timeout: 120 |
38 | 38 | #retries: 3 |
39 | 39 |
|
40 | 40 | # (required) enterprise organization settings |
41 | 41 | # You must specify all five of these settings. Consult the |
42 | 42 | # Adobe UMAPI documentation and the Adobe I/O Console to determine |
43 | 43 | # the correct settings for your enterprise organization. |
44 | | -# [NOTE: the priv_key_path setting can be an absolute or relative pathname; |
45 | | -# if relative, it is interpreted relative to this configuration file.] |
46 | 44 | enterprise: |
47 | 45 | org_id: "Org ID goes here" |
48 | 46 | client_id: "Client ID goes here" |
49 | 47 | client_secret: "Client secret goes here" |
50 | | - tech_acct_id: "Tech account ID goes here" |
51 | | - priv_key_path: "private.key" |
52 | | - |
53 | | - # (optional) As an alternative to priv_key_path, you can place the private key |
54 | | - # data directly in this file. To do this, remove the priv_key_path entry above |
55 | | - # and uncomment the following entry. Replace the sample data with the data |
56 | | - # from your private key file (which will be much longer). |
57 | | - #priv_key_data: | |
58 | | - # -----BEGIN RSA PRIVATE KEY----- |
59 | | - # MIIf74jfd84oAgEA6brj4uZ2f1Nkf84j843jfjjJGHYJ8756GHHGGz7jLyZWSscH |
60 | | - # CoifurKJY763GHKL98mJGYxWSBvhlWskdjdatagoeshere986fKFUNGd74kdfuEH |
61 | | - # -----END RSA PRIVATE KEY----- |
62 | 48 |
|
63 | 49 | # (optional) You can store credentials in the operating system credential store |
64 | 50 | # (Windows Credential Manager, Mac Keychain, Linux Freedesktop Secret Service |
65 | 51 | # or KWallet - these will be built into the Linux distribution). |
66 | 52 | # To use this feature, uncomment the following entries and remove the |
67 | | - # client_id, client_secret, and priv_key_data above. |
| 53 | + # client_id, and client_secret above. |
68 | 54 | # The actual credential values are placed in the credential store with the |
69 | 55 | # username as the org_id value, and the key name (perhaps called internet |
70 | 56 | # or network address) as one of the values below. |
71 | 57 | #secure_client_id_key: umapi_client_id |
72 | 58 | #secure_client_secret_key: umapi_client_secret |
73 | | - #secure_priv_key_data_key: umapi_private_key_data |
74 | | - # Note: the Windows credential store generally can't store data as large as a private |
75 | | - # key, so the recommended path for securing your private key on windows is given next. |
76 | | - |
77 | | - # (optional): You can secure your private key data by encrypting it, as with |
78 | | - # openssl pkcs8 -in private.key -topk8 -v2 des3 -out private-encrypted.key |
79 | | - # which prompts for a passphrase and creates a passphrase-encrypted file in PKCS#8 format. |
80 | | - # Having done this, you can use the setting priv_key_pass to specify the passphrase needed |
81 | | - # by User Sync to decrypt the private key file (or private key data), as in: |
82 | | - #priv_key_pass: "my passphrase for my private key" |
83 | | - # For better security, you should save your passphrase into the secure credential store |
84 | | - # on your platform (username = your org ID, service/internet address = "umapi_private_key_passphrase") |
85 | | - # and then uncomment this setting: |
86 | | - #secure_priv_key_pass_key: umapi_private_key_passphrase |
0 commit comments