BigW Consortium Gitlab

deploy_key_multiple_projects.md 854 Bytes
Newer Older
1 2 3 4 5 6 7
# 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:

```
Job van der Voort committed
8
curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/projects
9 10 11 12 13
```

Or finding the id of a group and then listing all projects in that group:

```
Job van der Voort committed
14
curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups
15

Job van der Voort committed
16 17
# For group 1234:
curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups/1234
18 19 20 21
```

With those IDs, add the same deploy key to all:
```
22 23 24
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
25
```