terraform: image: registry.gitlab.com/gitlab-org/terraform-images/stable:latest before_script: - apk add --no-cache bash - ./scripts/terraform/terraform.sh init -backend=false script: - ./scripts/terraform/lint.sh ansible: image: python:3.11-slim variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" cache: paths: - .cache/pip before_script: - chmod 0755 ansible/ # HACK: https://docs.ansible.com/ansible/devel/reference_appendices/config.html#cfg-in-world-writable-dir - apt-get update && apt-get install -y bash git - ./scripts/ansible/setup.sh - chmod -x ansible/vault-pass.sh # HACK: Pretend executable _is_ the password script: - ./scripts/ansible/lint.sh