NORY-47: create script to generate some test users
This commit is contained in:
parent
45b3961891
commit
a7c13d27f5
1 changed files with 36 additions and 0 deletions
36
docker/ory-dev/generate-users.sh
Normal file
36
docker/ory-dev/generate-users.sh
Normal file
|
@ -0,0 +1,36 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Check if the number of arguments is correct
|
||||
if [ $# -ne 2 ]; then
|
||||
echo "Usage: $0 <schema_id> <count>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Get the schema ID and count from the arguments
|
||||
schema_id=$1
|
||||
count=$2
|
||||
|
||||
# Loop through the count
|
||||
for i in $(seq 1 $count); do
|
||||
|
||||
# Create the JSON data with the email and name
|
||||
data=$(cat <<EOF
|
||||
{
|
||||
"schema_id": "$schema_id",
|
||||
"state": "active",
|
||||
"traits": {
|
||||
"email": "user-$i@example.com",
|
||||
"name": "User $i"
|
||||
}
|
||||
}
|
||||
EOF
|
||||
)
|
||||
|
||||
# Execute the curl command
|
||||
curl --request POST \
|
||||
--url http://127.0.0.1:4434/admin/identities \
|
||||
--data "$data"
|
||||
|
||||
done
|
||||
|
||||
exit 0
|
Loading…
Add table
Reference in a new issue