2021-07-11 17:02:36 +01:00
|
|
|
terraform:
|
|
|
|
image: hashicorp/terraform:latest
|
|
|
|
before_script:
|
|
|
|
- ./scripts/terraform/terraform.sh init -backend=false
|
|
|
|
script:
|
|
|
|
- ./scripts/terraform/lint.sh
|
|
|
|
|
|
|
|
ansible:
|
2021-07-11 17:47:42 +01:00
|
|
|
image: python:3.9-slim
|
2021-07-11 17:02:36 +01:00
|
|
|
variables:
|
|
|
|
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- .cache/pip
|
|
|
|
before_script:
|
|
|
|
- ./scripts/ansible/setup.sh
|
|
|
|
script:
|
|
|
|
- ./scripts/ansible/lint.sh
|