Skip to content

Instantly share code, notes, and snippets.

@pkazi
Created October 22, 2018 09:08
Show Gist options
  • Save pkazi/96bcda9acb67b4524bd3ca00419239a9 to your computer and use it in GitHub Desktop.
Save pkazi/96bcda9acb67b4524bd3ca00419239a9 to your computer and use it in GitHub Desktop.
DCOS add users to Organization using CLI ( Open Source DCOS)
#!/bin/bash
# Uage dcosAddUsers.sh <Users to add are given in list.txt, each user on new line>
for i in `cat users.list`;
do
echo $i
curl -X PUT -H "Authorization: Bearer $(dcos config show core.dcos_acs_token)" "$(dcos config show core.dcos_url)/acs/api/v1/users/$i" -d "{}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment