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

ERROR! the role Users/xxxx/ansible/roles/basic_install' was not found – Debian

i am running an ansible playbook, but it won't find my defined roles. I get the following error: ERROR! the role 'Users/xxxx/ansible/roles/basic_install' was not found in /Users/xxxx/ansible/playbooks/roles:/Users/xxxx/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:/Users/xxxx/ansible/playbooks The error appears to be in '/Users/xxxx/ansible/playbooks/byrule.yml': line 6, column 7, but may…

VIEW QUESTION

ansible returns with "Failed to import the required Python library (Docker SDK for Python: docker (Python >= 2.7) or docker-py (Python 2.6)) – Debian

I am running myserver in ubuntu: + sudo cat /etc/os-release NAME="Ubuntu" VERSION="16.04.6 LTS (Xenial Xerus)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 16.04.6 LTS" VERSION_ID="16.04" HOME_URL="http://www.ubuntu.com/" SUPPORT_URL="http://help.ubuntu.com/" BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/" VERSION_CODENAME=xenial UBUNTU_CODENAME=xenial I use ansible and when I run it I get the following error: fatal:…

VIEW QUESTION
Back To Top
Search