@rockcarver/frodo-cli 4.0.2-0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +72 -59
- package/dist/app.cjs +2145 -1842
- package/dist/app.cjs.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Expanded experimental `frodo config-manager push` coverage with new import commands (PRs #633, #637, #638, #639, #640):
|
|
13
|
+
- `frodo config-manager push cors`
|
|
14
|
+
- `frodo config-manager push csp` (Cloud-only)
|
|
15
|
+
- `frodo config-manager push custom-nodes`
|
|
16
|
+
- `frodo config-manager push remote-servers`
|
|
17
|
+
- `frodo config-manager push secret-mappings` (Cloud-only)
|
|
18
|
+
- Added targeted import filters for new config-manager push flows:
|
|
19
|
+
- `frodo config-manager push csp --name <name>` supports importing only `enforced` or `report-only` policy content.
|
|
20
|
+
- `frodo config-manager push custom-nodes --name <name>` imports a single custom node by display name.
|
|
21
|
+
- `frodo config-manager push secret-mappings --name <name>` imports a single secret mapping by ID (requires specifying a non-root realm argument).
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Updated custom node pull option naming for consistency across config-manager commands:
|
|
26
|
+
- `frodo config-manager pull custom-nodes` now uses `--name <name>` (replacing `--node-name <node-name>`).
|
|
27
|
+
|
|
28
|
+
## [4.1.0] - 2026-07-21
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- Support Identity Governance for cloud IGA tenants with first-class workflow lifecycle tooling and safer request type migration controls (PR #631):
|
|
33
|
+
- Added a new `frodo iga workflow` command group with end-to-end workflow operations: `list`, `describe`, `export`, `import`, `publish`, and `delete`.
|
|
34
|
+
- Added `--only-custom` (`-c`) to `frodo config export` and `frodo config import` so request type migration can be scoped to custom request types only.
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
|
|
38
|
+
- The latest CLI workflow command set and IGA behavior in this line are based on `@rockcarver/frodo-lib` `4.1.0`.
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Fixed `frodo config import -A` behavior to better handle directory-based imports when global or realm subdirectories are missing, instead of failing early (PR #631).
|
|
43
|
+
- Fixed config import UX to emit a clear warning when an import run completes with no entities imported (PR #631).
|
|
44
|
+
|
|
45
|
+
## [4.0.2-0] - 2026-07-20
|
|
46
|
+
|
|
10
47
|
## [4.0.1] - 2026-07-17
|
|
11
48
|
|
|
12
49
|
### Changed
|
|
@@ -378,23 +415,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
378
415
|
### Added
|
|
379
416
|
|
|
380
417
|
- Improve support for custom platform deployments (non-forgeops or customized forgeops)
|
|
381
|
-
|
|
382
418
|
- \#429: Added options to support custom oauth2 clients used to obtain the access token for IDM API calls:
|
|
383
|
-
|
|
384
419
|
- `--login-client-id <client-id>` Specify a custom OAuth2 client id to use a your own oauth2 client for IDM API calls in deployments of type "cloud" or "forgeops". Your custom client must be configured as a public client and allow the authorization code grant using the "openid fr:idm:\*" scope. Use the "--redirect-uri" parameter if you have configured a custom redirect uri (default: "<host>/platform/appAuthHelperRedirect.html").
|
|
385
420
|
- `--login-redirect-uri <redirect-uri>` Specify a custom redirect URI to use with your custom OAuth2 client (efault: "<host>/platform/appAuthHelperRedirect.html").
|
|
386
421
|
|
|
387
422
|
The above options can also be supplied through environment variables:
|
|
388
|
-
|
|
389
423
|
- `FRODO_LOGIN_CLIENT_ID` OAuth2 client id for IDM API calls. Overridden by '--login-client-id' option.
|
|
390
424
|
- `FRODO_LOGIN_REDIRECT_URI` Redirect Uri for custom OAuth2 client id. Overridden by '--login-redirect-uri' option.
|
|
391
425
|
|
|
392
426
|
- \#359: Added an option to support custom IDM host URLs for all IDM API calls (e.g. platform deployments hosting AM and IDM on/in different DNS hosts/domains):
|
|
393
|
-
|
|
394
427
|
- `--idm-host <idm-host>` IDM base URL, e.g.: <https://cdk.idm.example.com/myidm>. Use only if your IDM installation resides in a different domain and/or if the base path differs from the default "/openidm".
|
|
395
428
|
|
|
396
429
|
The above option can also be supplied through an environment variable:
|
|
397
|
-
|
|
398
430
|
- `FRODO_IDM_HOST` IDM base URL. Overridden by '--idm-host' option.
|
|
399
431
|
|
|
400
432
|
**_Note:_** All the above options are also persisted in connection profiles so they only have to specified once and after that they come out of the connection profile.
|
|
@@ -736,15 +768,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
736
768
|
- `frodo esv secret import`
|
|
737
769
|
|
|
738
770
|
- Frodo now supports exporting (and importing) of ESV secret values. To leave stuartship of secret values with the cloud environment where they belong, frodo will always encrypt values using either encryption keys from the source environment (default) or the target environment (export option). Frodo will never export secrets in the clear. However, frodo supports importing clear values (as well as importing encrypted values). Use these new commands and parameters to export/import variables and secrets including secret values:
|
|
739
|
-
|
|
740
771
|
- New parameters for existing `frodo esv secret export` and `frodo config export` commands:
|
|
741
|
-
|
|
742
772
|
- `--include-active-values` Include the currently active (and loaded) secret value in the export. By default, secret values are encrypted server-side in the environment they are exported from. Use `--target <host url>` to have another environment perform the encryption.
|
|
743
773
|
|
|
744
774
|
- `--target <host url>` Host URL of the environment to perform secret value encryption. The URL must resolve to an existing connection profile. Use this option to generate an export that can be imported into the target environment without requiring admin access to the source environment.
|
|
745
775
|
|
|
746
776
|
- New `frodo esv secret import` and updated existing `frodo config import` command and note-worthy parameters:
|
|
747
|
-
|
|
748
777
|
- `--include-active-values` Import any secret values contained in the import file. By default, secret values are encrypted server-side in the environment they are exported from. Use `--source <host url>` to import a file exported from another environment than the one you are importing to.
|
|
749
778
|
|
|
750
779
|
- `--source <host url>` Host URL of the environment which performed secret value encryption. The URL must resolve to an existing connection profile. Use this option to import a file that was exported from a different source environment than the one you are importing to.
|
|
@@ -922,14 +951,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
922
951
|
### Added
|
|
923
952
|
|
|
924
953
|
- \#283: Support for authentication settings:
|
|
925
|
-
|
|
926
954
|
- `frodo authn` Manage authentication setting.
|
|
927
955
|
- `describe` List authentication settings.
|
|
928
956
|
- `export` Export authentication settings.
|
|
929
957
|
- `import` Import authentication settings.
|
|
930
958
|
|
|
931
959
|
Examples:
|
|
932
|
-
|
|
933
960
|
- Describe authentication settings:<br>
|
|
934
961
|
`frodo authn describe <myTenant> <realm>`
|
|
935
962
|
|
|
@@ -1032,14 +1059,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1032
1059
|
### Added
|
|
1033
1060
|
|
|
1034
1061
|
- \#251: Support for Identity Cloud admin federation configuration:
|
|
1035
|
-
|
|
1036
1062
|
- `frodo admin federation` Manage admin federation configuration.
|
|
1037
1063
|
- `export` Export admin federation providers.
|
|
1038
1064
|
- `import` Import admin federation providers.
|
|
1039
1065
|
- `list` List admin federation providers.
|
|
1040
1066
|
|
|
1041
1067
|
Examples:
|
|
1042
|
-
|
|
1043
1068
|
- List all configured admin federation providers:<br>
|
|
1044
1069
|
`frodo admin federation list <myTenant>`
|
|
1045
1070
|
|
|
@@ -1077,14 +1102,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1077
1102
|
|
|
1078
1103
|
- MacOS binaries are now signed and notarized and run without security exceptions.
|
|
1079
1104
|
- \#251: Support for Identity Cloud admin federation configuration:
|
|
1080
|
-
|
|
1081
1105
|
- `frodo admin federation` Manage admin federation configuration.
|
|
1082
1106
|
- `export` Export admin federation providers.
|
|
1083
1107
|
- `import` Import admin federation providers.
|
|
1084
1108
|
- `list` List admin federation providers.
|
|
1085
1109
|
|
|
1086
1110
|
Examples:
|
|
1087
|
-
|
|
1088
1111
|
- List all configured admin federation providers:<br>
|
|
1089
1112
|
`frodo admin federation list <myTenant>`
|
|
1090
1113
|
|
|
@@ -1117,14 +1140,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1117
1140
|
### Added
|
|
1118
1141
|
|
|
1119
1142
|
- \#251: Support for Identity Cloud admin federation configuration:
|
|
1120
|
-
|
|
1121
1143
|
- `frodo admin federation` Manage admin federation configuration.
|
|
1122
1144
|
- `export` Export admin federation providers.
|
|
1123
1145
|
- `import` Import admin federation providers.
|
|
1124
1146
|
- `list` List admin federation providers.
|
|
1125
1147
|
|
|
1126
1148
|
Examples:
|
|
1127
|
-
|
|
1128
1149
|
- List all configured admin federation providers:<br>
|
|
1129
1150
|
`frodo admin federation list <myTenant>`
|
|
1130
1151
|
|
|
@@ -1177,7 +1198,6 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1177
1198
|
### Added
|
|
1178
1199
|
|
|
1179
1200
|
- Support for authorization policies, policy sets, and resource types through new `authz` commands:
|
|
1180
|
-
|
|
1181
1201
|
- `frodo authz type` Manage authorization resource types.
|
|
1182
1202
|
- `delete` Delete authorization resource types.
|
|
1183
1203
|
- `describe` Describe authorization resource types.
|
|
@@ -1198,7 +1218,6 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1198
1218
|
- `list` List authorization policies.
|
|
1199
1219
|
|
|
1200
1220
|
Examples:
|
|
1201
|
-
|
|
1202
1221
|
- Export a whole policy set including policies and resource types:<br>
|
|
1203
1222
|
`frodo authz set export -i <myPolicySet> <myTenant>`
|
|
1204
1223
|
- Import a whole policy set including dependencies exported using the previous example:<br>
|
|
@@ -1212,7 +1231,6 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1212
1231
|
**_Note_**: Policy IDs/names have to be unique within the realm. Therefore you cannot export all policies from one policy set and import them into another policy set in the same realm without deleting the original policy set first.
|
|
1213
1232
|
|
|
1214
1233
|
Notes:
|
|
1215
|
-
|
|
1216
1234
|
- Use the new `--prereqs` option with the `authz set/policy import/export` commands to include structural prerequisites like resource types and policy sets.
|
|
1217
1235
|
- Use the new `--json` option with all `describe` sub-commands:<br>
|
|
1218
1236
|
`frodo authz type describe --json -n URL <myTenant>`<br>
|
|
@@ -1353,11 +1371,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1353
1371
|
### Added
|
|
1354
1372
|
|
|
1355
1373
|
- \#52: Added new developer options for `script export` and `script import` commands:
|
|
1356
|
-
|
|
1357
1374
|
- `frodo script export`:
|
|
1358
1375
|
- `-x`, `--extract`: Extract the script from the exported file, and save it to a separate file. Ignored with `-n` or `-a`.
|
|
1359
1376
|
- `frodo script import`:
|
|
1360
|
-
|
|
1361
1377
|
- `-w`, `--watch`: Watch for changes to the script files and import the scripts automatically when the file changes. Can only be used with `-A`. (default: false)
|
|
1362
1378
|
|
|
1363
1379
|
**_Note:_** This new option only applies if the export was generated with the new `--extract` option!
|
|
@@ -1398,53 +1414,50 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1398
1414
|
### Added
|
|
1399
1415
|
|
|
1400
1416
|
- Full support for Identity Cloud Service Accounts across all commands. Three options to leverage service accounts:
|
|
1417
|
+
1. Connection profiles for daily CLI usage:
|
|
1401
1418
|
|
|
1402
|
-
|
|
1419
|
+
For daily admin and development tasks, using the new `frodo conn save` command (see details under next bullet) is the easiest way to get going with service accounts. To migrate an existing connection profile to service accounts and automatically create a service account for your tenant admin, simply issue the following command:
|
|
1403
1420
|
|
|
1404
|
-
|
|
1421
|
+
% frodo conn save service-accounts
|
|
1422
|
+
Connected to https://openam-service-accounts.forgeblocks.com/am [alpha] as user volker.scheuber@forgerock.com
|
|
1423
|
+
Created and added service account Frodo-SA-1673586189578 with id 99c04bba-7213-463b-9a27-ceafa8a95734 to profile.
|
|
1424
|
+
Saved connection profile https://openam-service-accounts.forgeblocks.com/am
|
|
1425
|
+
%
|
|
1405
1426
|
|
|
1406
|
-
|
|
1407
|
-
Connected to https://openam-service-accounts.forgeblocks.com/am [alpha] as user volker.scheuber@forgerock.com
|
|
1408
|
-
Created and added service account Frodo-SA-1673586189578 with id 99c04bba-7213-463b-9a27-ceafa8a95734 to profile.
|
|
1409
|
-
Saved connection profile https://openam-service-accounts.forgeblocks.com/am
|
|
1410
|
-
%
|
|
1427
|
+
Then validate your connection profile is using the new service account:
|
|
1411
1428
|
|
|
1412
|
-
|
|
1429
|
+
% frodo info service-accounts
|
|
1430
|
+
Connected to https://openam-service-accounts.forgeblocks.com/am [alpha] as service account Frodo-SA-1673586189578 [99c04bba-7213-463b-9a27-ceafa8a95734]
|
|
1413
1431
|
|
|
1414
|
-
|
|
1415
|
-
|
|
1432
|
+
Host URL │https://openam-service-accounts.forgeblocks.com/am
|
|
1433
|
+
AM Version │7.3.0-2022-10-SNAPSHOT Build 9a1793c301ef579705e59b66ce57587f553e915f (2022-December-13 10:05)
|
|
1434
|
+
Subject (Type) │Frodo-SA-1673586189578 [99c04bba-7213-463b-9a27-ceafa8a95734] (Service Account)
|
|
1435
|
+
Deployment Type│cloud
|
|
1436
|
+
Cookie Name │e8b2bd07d5440d3
|
|
1437
|
+
Immutable │false
|
|
1438
|
+
Locked │false
|
|
1439
|
+
Region │us-west1
|
|
1440
|
+
Tier │other
|
|
1416
1441
|
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
Deployment Type│cloud
|
|
1421
|
-
Cookie Name │e8b2bd07d5440d3
|
|
1422
|
-
Immutable │false
|
|
1423
|
-
Locked │false
|
|
1424
|
-
Region │us-west1
|
|
1425
|
-
Tier │other
|
|
1442
|
+
Bearer token:
|
|
1443
|
+
eyJ0eXAiOiJKV1QiLCJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiZGlyIn0..JD1iu64iGZZoGNwEr-iF2w.af-0-UDDOdusAETjw9YE3YnjOPr6TrdQrBLcl1lxf5RpNThfRhD08xvu1WtJbUZgvjbWdajECEFJfnEinnrUdpe9l0tHU6gAxDrRmu9hAjt0AB3PFSk9BE5SlwvaGoW5vrF4oH0IYtuv4899hFF8KGNYUtou143xmSrsLH37862YiAeiRKtjaQsVUrdbDPAFnKgGRxJIiXp-UE0ZCQQGSqm-Gj0AqVvo-Piib9THrEbbJCzdc00RPaCU2Ra1DH9PDid7ix-zfuind5IgEXxA8XwBM7kSEkiDLUWZ8EaFhn6YXwIHjXetacgYvvDaUav2Fq5baIitnG_LIrCm32XzcDkVnph4mVklBwfbQbWE6BGXEVLK-QLdDupaQw-bic-yVs2d7PBk2y70gbChHCQOm6-MepkYznP4wKoRR1gkqCdl51QIp-tsFB5K2plrKXiwsfHlHKfFKmsbdQUmH7xJFZQRhAtR_pKm-vHPOrPfBh0VbAdLRSkSeOZUABFH56X3gwXIpG_zuH42bQQkM9AlkB-lZrLf4jN0zFq-2ZN-zDgRR9h6qiiD3p9BDmFfaorUDTfFSrfaKas7OIp5ooW8Kqpv28RRtRtvfex0vT_kRbWl5R08MPWZDKZbx4IMyuun-2pYJ-F2-dvfA4A-jRvWIvC6jTUTu-RZZ0Yw1F2lgwFOVbmpMmG2uGHp5GceWePsZ34FVtJuaTd5D-uq_FoAb3HQ7FGEgUMJN_q82hCCX3URv_ocbFMjYwctdUqV_Ed-__A_9lbHHr8D2Uw_Qo0mwku7qwNBTS0-OcrwDvBOJohzRbpbfim-Sq2UzV9SBzzXNK7sMft1pNfu2-saOwPfy6SE0u42-HDqxE9t4MkklSroPY0oDUxO58ET8LXnewGhC9Tt0XTk6WA2rNLcNirhFqdmtKgfrSMQ_t22_DQEDwXpXqtHGmDoltJe7x_6Ofh0W5l7_A71MoHeFpVa_AHpHybnaF4fvUbD284wOV8i22SqrUKuHoJ3o6_g5JlhvMCvb4OZQ-ltxSf98aPsB9nCSthYg5-GkiR_r5mK1w9gZkBTXfYs0qC8-zYEQb4WNiI9.2JGMj9iW6YD-RE_dGkL7_w
|
|
1444
|
+
%
|
|
1426
1445
|
|
|
1427
|
-
|
|
1428
|
-
eyJ0eXAiOiJKV1QiLCJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiZGlyIn0..JD1iu64iGZZoGNwEr-iF2w.af-0-UDDOdusAETjw9YE3YnjOPr6TrdQrBLcl1lxf5RpNThfRhD08xvu1WtJbUZgvjbWdajECEFJfnEinnrUdpe9l0tHU6gAxDrRmu9hAjt0AB3PFSk9BE5SlwvaGoW5vrF4oH0IYtuv4899hFF8KGNYUtou143xmSrsLH37862YiAeiRKtjaQsVUrdbDPAFnKgGRxJIiXp-UE0ZCQQGSqm-Gj0AqVvo-Piib9THrEbbJCzdc00RPaCU2Ra1DH9PDid7ix-zfuind5IgEXxA8XwBM7kSEkiDLUWZ8EaFhn6YXwIHjXetacgYvvDaUav2Fq5baIitnG_LIrCm32XzcDkVnph4mVklBwfbQbWE6BGXEVLK-QLdDupaQw-bic-yVs2d7PBk2y70gbChHCQOm6-MepkYznP4wKoRR1gkqCdl51QIp-tsFB5K2plrKXiwsfHlHKfFKmsbdQUmH7xJFZQRhAtR_pKm-vHPOrPfBh0VbAdLRSkSeOZUABFH56X3gwXIpG_zuH42bQQkM9AlkB-lZrLf4jN0zFq-2ZN-zDgRR9h6qiiD3p9BDmFfaorUDTfFSrfaKas7OIp5ooW8Kqpv28RRtRtvfex0vT_kRbWl5R08MPWZDKZbx4IMyuun-2pYJ-F2-dvfA4A-jRvWIvC6jTUTu-RZZ0Yw1F2lgwFOVbmpMmG2uGHp5GceWePsZ34FVtJuaTd5D-uq_FoAb3HQ7FGEgUMJN_q82hCCX3URv_ocbFMjYwctdUqV_Ed-__A_9lbHHr8D2Uw_Qo0mwku7qwNBTS0-OcrwDvBOJohzRbpbfim-Sq2UzV9SBzzXNK7sMft1pNfu2-saOwPfy6SE0u42-HDqxE9t4MkklSroPY0oDUxO58ET8LXnewGhC9Tt0XTk6WA2rNLcNirhFqdmtKgfrSMQ_t22_DQEDwXpXqtHGmDoltJe7x_6Ofh0W5l7_A71MoHeFpVa_AHpHybnaF4fvUbD284wOV8i22SqrUKuHoJ3o6_g5JlhvMCvb4OZQ-ltxSf98aPsB9nCSthYg5-GkiR_r5mK1w9gZkBTXfYs0qC8-zYEQb4WNiI9.2JGMj9iW6YD-RE_dGkL7_w
|
|
1429
|
-
%
|
|
1446
|
+
Once you have verified that your service account works, go ahead and enable MFA for your tenant admin account!
|
|
1430
1447
|
|
|
1431
|
-
|
|
1448
|
+
2. CLI parameters:
|
|
1432
1449
|
|
|
1433
|
-
|
|
1450
|
+
All commands support the following new options to use service accounts:
|
|
1451
|
+
- `--sa-id <uuid>` Service account's uuid. If specified, must also include `--sa-jwk-file`.
|
|
1452
|
+
- `--sa-jwk-file <file>` File containing the service account's java web key (jwk). Jwk must contain private key! If specified, must also include `--sa-id`.
|
|
1434
1453
|
|
|
1435
|
-
|
|
1454
|
+
This is a great way to leverage the nice UI to create and manage service accounts and then use one of the accounts with Frodo.
|
|
1436
1455
|
|
|
1437
|
-
|
|
1438
|
-
- `--sa-jwk-file <file>` File containing the service account's java web key (jwk). Jwk must contain private key! If specified, must also include `--sa-id`.
|
|
1456
|
+
3. Environment variables for CI/CD
|
|
1439
1457
|
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
For CI/CD pipelines, environment variables are preferable over command line parameters, because they are not visible in system logs:
|
|
1445
|
-
|
|
1446
|
-
- `FRODO_SA_ID`: Service account's uuid. If set, must also set `FRODO_SA_JWK`.
|
|
1447
|
-
- `FRODO_SA_JWK`: Service account's java web key (jwk) as single-line string. Jwk must contain private key! If set, must also set `FRODO_SA_ID`.
|
|
1458
|
+
For CI/CD pipelines, environment variables are preferable over command line parameters, because they are not visible in system logs:
|
|
1459
|
+
- `FRODO_SA_ID`: Service account's uuid. If set, must also set `FRODO_SA_JWK`.
|
|
1460
|
+
- `FRODO_SA_JWK`: Service account's java web key (jwk) as single-line string. Jwk must contain private key! If set, must also set `FRODO_SA_ID`.
|
|
1448
1461
|
|
|
1449
1462
|
- \#143: Support Identity Cloud Service Accounts in `frodo conn save|add` command
|
|
1450
1463
|
1. The `frodo conn add` command is renamed to `frodo conn save` and `add` is added as an alias for backwards compatibility.
|
|
@@ -1459,7 +1472,6 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1459
1472
|
5. The `frodo conn save` command validates service account configuration unless the `--no-validate` options is supplied.
|
|
1460
1473
|
|
|
1461
1474
|
- Add support for additional environment variables:
|
|
1462
|
-
|
|
1463
1475
|
- `FRODO_SA_ID`: Service account's uuid. If set, must also set `FRODO_SA_JWK`.
|
|
1464
1476
|
- `FRODO_SA_JWK`: Service account's java web key (jwk) as single-line string. Jwk must contain private key! If set, must also set `FRODO_SA_ID`.
|
|
1465
1477
|
- `FRODO_AUTHENTICATION_SERVICE=journey`: Specify a login journey for frodo to use.
|
|
@@ -1467,7 +1479,6 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1467
1479
|
- `FRODO_POLLY_LOG_LEVEL=info`: Frodo mock engine log level (`trace`, `debug`, `info`, `warn`, `error`, `silent`). This is helpful for troubleshooting the mock capability, only.
|
|
1468
1480
|
|
|
1469
1481
|
Environment variables added in 0.19.0:
|
|
1470
|
-
|
|
1471
1482
|
- `FRODO_HOST`
|
|
1472
1483
|
- `FRODO_REALM`
|
|
1473
1484
|
- `FRODO_USERNAME`
|
|
@@ -2340,7 +2351,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2340
2351
|
- Fixed problem with adding connection profiles
|
|
2341
2352
|
- Miscellaneous bug fixes
|
|
2342
2353
|
|
|
2343
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0
|
|
2354
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.1.0...HEAD
|
|
2355
|
+
[4.1.0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.2-0...v4.1.0
|
|
2356
|
+
[4.0.2-0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1...v4.0.2-0
|
|
2344
2357
|
[4.0.1]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1-1...v4.0.1
|
|
2345
2358
|
[4.0.1-1]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1-0...v4.0.1-1
|
|
2346
2359
|
[4.0.1-0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0...v4.0.1-0
|