k8s-cluster/.gitlab-ci.yml
2024-05-18 05:03:38 +03:00

27 lines
505 B
YAML

stages:
- terraforming
staging:
stage: terraforming
variables:
TF_STATE_NAME: staging
TF_CACHE_KEY: staging
TF_ROOT: terraform/staging
trigger:
include: terraform/staging/.gitlab-ci.yml
rules:
- changes:
- terraform/staging/*
testbed:
stage: terraforming
variables:
TF_STATE_NAME: testbed
TF_CACHE_KEY: testbed
TF_ROOT: terraform/testbed
trigger:
include: terraform/testbed/.gitlab-ci.yml
rules:
- changes:
- terraform/testbed/*