2014-04-15 09:04:48 -04:00
|
|
|
# Adding deploy keys to multiple projects
|
|
|
|
|
|
|
|
If you want to easily add the same deploy key to multiple projects in the same group, this can be achieved quite easily with the API.
|
|
|
|
|
|
|
|
First, find the ID of the projects you're interested in, by either listing all projects:
|
|
|
|
|
|
|
|
```
|
2014-05-19 14:35:59 -04:00
|
|
|
curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/projects
|
2014-04-15 09:04:48 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Or finding the id of a group and then listing all projects in that group:
|
|
|
|
|
|
|
|
```
|
2014-05-19 14:35:59 -04:00
|
|
|
curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups
|
2014-04-15 09:04:48 -04:00
|
|
|
|
2014-05-19 14:35:59 -04:00
|
|
|
# For group 1234:
|
|
|
|
curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups/1234
|
2014-04-15 09:04:48 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
With those IDs, add the same deploy key to all:
|
|
|
|
```
|
2014-05-05 11:04:19 -04:00
|
|
|
for project_id in 321 456 987; do
|
|
|
|
curl -X POST --data '{"title": "my key", "key": "ssh-rsa AAAA..."}' --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/projects/${project_id}/keys
|
|
|
|
done
|
2014-04-15 09:04:48 -04:00
|
|
|
```
|