Skip to content

Commit d053bd5

Browse files
author
Martin Jackson
committed
Document the need for aws-creds in AEG
1 parent 27e9ff3 commit d053bd5

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

content/patterns/ansible-edge-gitops/getting-started.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,26 @@ service](https://console.redhat.com/openshift/create).
2727
In addition to the openshift cluster, you will need to prepare a number of secrets, or credentials, which will be used
2828
in the pattern in various ways. To do this, copy the [values-secret.yaml template](https://github.com/validatedpatterns/ansible-edge-gitops/blob/main/values-secret.yaml.template) to your home directory as `values-secret.yaml` and replace the explanatory text as follows:
2929

30-
* A username and SSH Keypair (private key and public key). These will be used to provide access to the Kiosk VMs in the demo.
30+
* AWS Credentials (an access key and a secret key). These are used to provision the metal worker in AWS (which hosts
31+
the VMs). If the portworx variant of the pattern is used, these credentials will be used to modify IAM rules to allow
32+
portworx to run correctly.
3133

3234
```yaml
3335
---
3436
# NEVER COMMIT THESE VALUES TO GIT
3537
version: "2.0"
3638
secrets:
39+
- name: aws-creds
40+
fields:
41+
- name: aws_access_key_id
42+
value: "An aws access key that can provision VMs and manage IAM (if using portworx)"
43+
44+
- name: aws_secret_access_key
45+
value: "An aws access secret key that can provision VMs and manage IAM (if using portworx)"
46+
```
47+
* A username and SSH Keypair (private key and public key). These will be used to provide access to the Kiosk VMs in the demo.
48+
49+
```yaml
3750
- name: kiosk-ssh
3851
fields:
3952
- name: username

0 commit comments

Comments
 (0)