Skip to content

Commit

Permalink
Fixes OPS-134
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Jan 30, 2024
1 parent 1266f96 commit 7af8023
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
shell: alpine.sh {0}

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ runner.arch }}
path: /home/runner/packages
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: /home/runner/artifacts

Expand All @@ -69,7 +69,7 @@ jobs:
shell: alpine.sh {0}

- name: Push
run: pakman push --concurrency 3
run: pakman push
shell: alpine.sh {0}
env:
WORKFLOW_REF: ${{ github.ref }}
Expand Down
Binary file added src/assets/infrastructure/aws/create-user.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/infrastructure/aws/user-iam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 26 additions & 1 deletion src/content/docs/infrastructure/aws/credentials.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
---
title: Credentials
description: Retrieving your aws credentials.
---
---

To provision your aws resources you'll need to generate some credentials to put into your terraform configuration.

Head over to the `IAM` dashboard in AWS. Click on the `Users` link on the sidebar.

![IAM](../../../../assets/infrastructure/aws/user-iam.png)

## Create User

Click on the `Create user` button.

![Create user](../../../../assets/infrastructure/aws/create-user.png)

This will bring you to a form, type in a `User name`, and proceed to the next screen.

### Attach Policy

![Attach user policy](../../../../assets/infrastructure/aws/user-attach-policy.png)

Click on the `Attach policies directly` option. Then search for `Admin` then select the `AdministratorAccess` and scroll down at hit `Next`.

## Create Credential

Next browse to the page of the user you just created.

0 comments on commit 7af8023

Please sign in to comment.