adding challenge5 solution #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Check failure on line 1 in .github/workflows/challenge5.yaml
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - challenge5/** | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| jobs: | ||
| terraform: | ||
| runs-on: ubuntu-latest | ||
| defaults: | ||
| run: | ||
| working-directory: ./challenge5 | ||
| steps: | ||
| - name: " Github checkout" | ||
| uses: actions/checkout@v3 | ||
| with: | ||
| sparse-checkout: challenge4 | ||
| - name: "configure aws" | ||
| uses: aws-actions/configure-aws-credentials | ||
| with: | ||
| role-to-assume: ${{ secrets.challenge5_arn }} | ||
| aws-region: "us-east-1" | ||
| - name: "Terraform setup" | ||
| uses: hashicorp/setup-terraform@v3 | ||
| with: | ||
| terraform_version: 1.4.1 | ||
| - name: "terraform init" | ||
| run: terraform init | ||
| - name: "Terraform format" | ||
| run: terraform fmt -check | ||
| - name: "Terraform validate" | ||
| run: terrafomrm validate | ||
| - name: "Terraform plan" | ||
| run: terraform plan | ||
| - name: "terraform apply" | ||
| run: terraform apply --auto-approve | ||
| - name: "applying config" | ||
| uses: aws-actions/amazon-eks-action | ||
| with: | ||
| cluster-name: mycluster | ||
| command: kubectl apply -f kubernetes/ | ||