diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 946d331..ea26abe 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -31,12 +31,12 @@ jobs: run: terraform apply -auto-approve -input=false - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: '3.10' - name: Install Ansible - run: pip install ansible + run: python3 -m pip install --user ansible - name: Install boto3 run: pip install boto3 diff --git a/ansible.cfg b/ansible.cfg index 45c42d0..4fd5583 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -315,7 +315,7 @@ remote_user= ubuntu ;facts_modules=smart # (boolean) Set this to "False" if you want to avoid host key checking by the underlying tools Ansible uses to connect to the host -;host_key_checking=True +host_key_checking=False # (boolean) Facts are available inside the `ansible_facts` variable, this setting also pushes them as their own vars in the main namespace. # Unlike inside the `ansible_facts` dictionary, these will have an `ansible_` prefix.