Skip to content

Commit

Permalink
Added AWS ECR
Browse files Browse the repository at this point in the history
  • Loading branch information
dsarfati committed May 3, 2024
1 parent 9c42b48 commit 5b3bb5e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Place the following in step in your github actions

```yml
- name: Deploy Update to SCE
uses: SaladTechnologies/[email protected].0
uses: SaladTechnologies/[email protected].1
with:
salad_organization: <salad organization name>
salad_project: <salad project name>
Expand Down Expand Up @@ -55,3 +55,20 @@ To add a `secret` go to the `Settings` tab in your project then select
| `salad_container_group` | Yes | `my-container-group` | The Salad container group name. Can be found in the portal url bar |
| `salad_api_key` | Yes | `********` | The Salad API key |
| `image_name` | Yes | `ghcr.io/my-container:0.1` | The full image name, including registry, image name and tag |
| `aws_access_key_id` | NO | `********` | The AWS ECR Access key |
| `aws_secret_access_key` | NO | `********` | The AWS Secret Access Key associated with the Access Key Id |

## AWS ECR

```yml
- name: Deploy Update to SCE
uses: SaladTechnologies/[email protected]
with:
salad_organization: <salad organization name>
salad_project: <salad project name>
salad_container_group: <salad container group name>
salad_api_key: ${{secrets.SALAD_API_KEY}}
image_name: <registry:tag>
aws_access_key_id: ${{secrets.AWS_ACCESS_KEY_ID}}
aws_secret_access_key: ${{secrets.AWS_SECRET_ACCESS_KEY}}
```

0 comments on commit 5b3bb5e

Please sign in to comment.