From d6f187c8ae13da42a97438624280cb919aad9c73 Mon Sep 17 00:00:00 2001 From: Timo Furrer <tfurrer@gitlab.com> Date: Thu, 18 Jan 2024 20:06:59 +0100 Subject: [PATCH] Set variables --- tests/integration-tests/Defaults.gitlab-ci.yml | 4 ++-- tests/integration.gitlab-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/integration-tests/Defaults.gitlab-ci.yml b/tests/integration-tests/Defaults.gitlab-ci.yml index 92da5eb..f622545 100644 --- a/tests/integration-tests/Defaults.gitlab-ci.yml +++ b/tests/integration-tests/Defaults.gitlab-ci.yml @@ -4,8 +4,8 @@ include: _image_registry_base: $GITLAB_OPENTOFU_IMAGE_BASE version: $CI_COMMIT_SHA opentofu_version: $OPENTOFU_VERSION - root_dir: $TF_ROOT - state_name: $TF_STATE_NAME + root_dir: $TEST_TF_ROOT + state_name: $TEST_TF_STATE_NAME stages: [validate, test, build, deploy, cleanup] diff --git a/tests/integration.gitlab-ci.yml b/tests/integration.gitlab-ci.yml index 3f10624..ab5c1fe 100644 --- a/tests/integration.gitlab-ci.yml +++ b/tests/integration.gitlab-ci.yml @@ -2,8 +2,8 @@ component: stage: test-integration variables: OPENTOFU_VERSION: $LATEST_OPENTOFU_VERSION - TF_STATE_NAME: ci-integration-$CI_PIPELINE_IID-$CI_NODE_INDEX - TF_ROOT: tests/terraform + TEST_TF_STATE_NAME: ci-integration-$CI_PIPELINE_IID-$CI_NODE_INDEX + TEST_TF_ROOT: tests/terraform trigger: include: tests/integration-tests/$PIPELINE strategy: depend -- GitLab