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
@@ -93,7 +95,14 @@ This reference architecture implementation uses Terraform. You will need to do t
93
95
94
96
3. Ensure you are logged in with `aws`. (Follow the [quickstart](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-quickstart.html) if you aren't)
95
97
96
-
4. Set the `HUMANITEC_TOKEN` environment variable to an appropriate Humanitec API token with the `Administrator` role on the Humanitec Organization.
98
+
4.
99
+
1. Login to Humanitec (your user needs to have the `Administrator` role on the Humanitec Organization)
100
+
101
+
```shell
102
+
humctl login
103
+
```
104
+
105
+
2. Alternatively: Set the `HUMANITEC_TOKEN` environment variable to an appropriate [Humanitec API token](https://developer.humanitec.com/platform-orchestrator/security/service-users/#generate-an-api-token-from-a-service-user) with the `Administrator` role on the Humanitec Organization.
97
106
98
107
For example:
99
108
@@ -164,12 +173,21 @@ Check for the existence of key elements of the reference architecture. This is a
164
173
Backstage requires a GitHub connection, which in turn needs:
165
174
166
175
* A GitHub organization and permission to create new repositories in it. Go to <https://github.com/account/organizations/new> to create a new org (the "Free" option is fine). Note: is has to be an organization, a free account is not sufficient.
167
-
* Create a classic github personal access token with `repo`, `workflow`, `delete_repo` and `admin:org` scope [here](https://github.com/settings/tokens).
168
-
* Set the `GITHUB_TOKEN` environment variable to your token.
* Create a classic github personal access token with `repo`, `workflow`, `delete_repo` and `admin:org` scope [here](https://github.com/settings/tokens).
186
+
* Set the `GITHUB_TOKEN` environment variable to your token.
187
+
188
+
```shell
189
+
export GITHUB_TOKEN="my-github-token"
190
+
```
173
191
174
192
* Set the `GITHUB_ORG_ID` environment variable to your GitHub organization ID.
0 commit comments