- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
02-19-2025 06:05 PM
02-20-2025 02:30 AM
Yes, you can manage user accounts for HUB/SCP using CLI or API, but the specific steps depend on the platform you're working with
PAN-OS (Palo Alto Networks)
CLI Commands:
Add User:
> set mgt-config users <username> password <password> role <role>
Modify User:
> set mgt-config users <username> password <new_password>
Delete User:
> delete mgt-config users <username>
API:
You can use the Palo Alto Networks API to create or manage users by sending XML requests to the appropriate endpoint.
AWS:
aws iam create-user --user-name <username>
aws iam attach-user-policy --user-name <username> --policy-arn arn:aws:iam::aws:policy/AdministratorAccess
aws iam delete-user --user-name <username>
AZURE:
az ad user create --display-name "<name>" --user-principal-name "<email>" --password "<password>"
az ad user delete --id <email>
02-20-2025 07:44 PM
@Mudhireddy Very thank you. Are there any abailable Tech doc for those?
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!