Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
4b13decd
Commit
4b13decd
authored
Aug 30, 2019
by
Alexis Sánchez
Committed by
Evan Read
Aug 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update doc/api/deploy_keys.md
parent
09e60782
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
doc/api/deploy_keys.md
doc/api/deploy_keys.md
+8
-5
No files found.
doc/api/deploy_keys.md
View file @
4b13decd
...
...
@@ -212,22 +212,25 @@ 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:
```
```
bash
curl
--header
'PRIVATE-TOKEN: <your_access_token>'
https://gitlab.example.com/api/v4/projects
```
Or finding the ID of a group
and then listing all projects in that group
:
Or finding the ID of a group:
```
```
bash
curl
--header
'PRIVATE-TOKEN: <your_access_token>'
https://gitlab.example.com/api/v4/groups
```
# For group 1234:
Then listing all projects in that group (for example, group 1234):
```
bash
curl
--header
'PRIVATE-TOKEN: <your_access_token>'
https://gitlab.example.com/api/v4/groups/1234
```
With those IDs, add the same deploy key to all:
```
```
bash
for
project_id
in
321 456 987
;
do
curl
--request
POST
--header
"PRIVATE-TOKEN: <your_access_token>"
--header
"Content-Type: application/json"
\
--data
'{"title": "my key", "key": "ssh-rsa AAAA..."}'
https://gitlab.example.com/api/v4/projects/
${
project_id
}
/deploy_keys
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment