Releases: akamai/cli-eaa
Releases · akamai/cli-eaa
v0.6.10
v0.6.9
Hello,
- We are adding a new report named last_access to generate the list of unique users and their last access, per IdP.
- See corresponding documentation for examples.
- Add a new column IdP hostname in the IdP list
akamai eaa idp
Housekeeping
- Moved reporting logic to a separate module
- Update license date to 2024
v0.6.8
Hello,
- Improvement: 4x faster
akamai eaa search
command - New: Terraform module to create/destroy EAA application configuration
- The only dependency outside
cli-eaa
is Bash - If you need a native Terraform support for app, see https://github.com/akamai/terraform-eaa
- See example for more details
- The only dependency outside
- 4 new Jinja template functions:
cli_connector
to lookup Connector from the unique IDcli_idp
to lookup IdP from the unique IDcli_directory
to lookup a directory from unique IDcli_group
to lookup a directory group from unique ID
- Minor fixes/enhancements
v0.6.7
v0.6.6
v0.6.3
fixed python 3.12 compatibility
v0.6.2
v0.6.1
What's Changed
cli-eaa can now watch for Directory Health with a follow mode, particularly helpful when operating directory on-prem.
% akamai eaa dir list --json --tail
Output example:
{
"dir_id": "dir://<DIRECTORY_UUID>",
"service": "ActiveDirectory",
"name": "AKDEMO AD with UPN",
"datetime": "2023-10-09T17:00:09.569665+00:00",
"enabled": true,
"connector_count": 2,
"directory_status": "ok",
"group_count": 115,
"user_count": 1,
"last_sync": "2023-10-09T15:25:31.727671",
"connectors": [
{
"name": "demo-v2-con-1-amer",
"reach": 1,
"state": 6,
"status": 1,
"uuid_url": "<CONNECTOR1_UUID>"
},
{
"name": "demo-v2-con-2-amer",
"reach": 1,
"state": 6,
"status": 1,
"uuid_url": "<CONNECTOR2_UUID>"
}
]
}