You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As someone that manages networks and connections in multiple Pureport accounts, I'd like to be able to list all networks and connections that I can read without having to loop over a list of accounts.
I currently have to do something like this:
for account in $(pureport accounts list | jq -c '.[] | {id: .id}' | cut -d\" -f4); do
pureport accounts connections -a ${account} list
done
``
As someone that manages networks and connections in multiple Pureport accounts, I'd like to be able to list all networks and connections that I can read without having to loop over a list of accounts.
I currently have to do something like this: