You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Rotate AWS Access token stored in Github Repository secrets
2
+
3
+
## Environment Variables
4
+
#### AWS_ACCESS_KEY_ID
5
+
- Required: ***True***
6
+
- Description: Access Key ID of the user being rotated. You can use `${{secrets.ACCESS_KEY_ID}}`
7
+
8
+
#### AWS_SECRET_ACCESS_KEY
9
+
- Required: ***True***
10
+
- Description: Secret Access Key ID of the user being rotated. You can use `${{secrets.SECRET_ACCESS_KEY_ID}}`
11
+
12
+
#### IAM_USERNAME
13
+
- Required: ***True***
14
+
- Description: Name of IAM user being rotated
15
+
16
+
#### GITHUB_TOKEN
17
+
- Required: ***True***
18
+
- Description: Github Token with **Repo Admin** access of the target repo. If being ran in the repo being updated, you can use `${{github.token}}`
19
+
20
+
#### OWNER_REPOSITORY
21
+
- Required: ***True***
22
+
- Description: The owner and repository name. For example, octocat/Hello-World. If being ran in the repo being updated, you can use `${{github.repository}}`
23
+
24
+
#### GITHUB_ACCESS_KEY_NAME
25
+
- Required: ***False***
26
+
- Default: `access_key_id`
27
+
- Description: Name of the secret for the Access Key ID. Setting this overrides the default.
28
+
29
+
#### GITHUB_SECRET_KEY_NAME
30
+
- Required: ***False***
31
+
- Default: `secret_key_id`
32
+
- Description: Name of the secret for the Secret Access Key ID. Setting this overrides the default.
0 commit comments