skip to Main Content

How to run ansible with aws dynamic inventory directly via GitHub Actions on ubuntu-latest?

I've tryied with the following steps: configured workflow in GitHub action: name: Terraform-ansible-apply on: workflow_dispatch: jobs: Terraform: name: Terraform Plan & Apply runs-on: ubuntu-latest env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} steps: - name: Checkout Repo uses: actions/checkout@v2…

VIEW QUESTION
Back To Top
Search