Skip to content

Commit

Permalink
Create eks-setup.yaml and add credentials for AWS
Browse files Browse the repository at this point in the history
  • Loading branch information
OloruntobiOlurombi authored Aug 26, 2024
1 parent a58830b commit 42d5eda
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/eks-setup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Set up EKS With Terraform

on: push

jobs:

LogInToAWS:
runs-on: ubuntu-latest

steps:
- name: Configure credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

0 comments on commit 42d5eda

Please sign in to comment.