spec: inputs: # Job and Stage name as: default: 'plan' description: 'Defines the name of this job.' stage: default: 'build' description: 'Defines the stage that this job will belong to.' # Versions # This version is only required, because we cannot access the context of the component, # see https://gitlab.com/gitlab-org/gitlab/-/issues/438275 version: default: 'latest' description: 'Version of this component. Has to be the same as the one in the component include entry.' opentofu_version: default: '1.7.1' options: - '$OPENTOFU_VERSION' - '1.7.1' - '1.7.0' - '1.7.0-alpha1' - '1.6.2' - '1.6.1' - '1.6.0' description: 'OpenTofu version that should be used.' # Images image_registry_base: default: '$CI_REGISTRY/components/opentofu' description: 'Host URI to the job images. Will be combined with `image_name` to construct the actual image URI.' # FIXME: not yet possible because of https://gitlab.com/gitlab-org/gitlab/-/issues/438722 # gitlab_opentofu_image: # # FIXME: This should reference the component tag that is used. # # Currently, blocked by https://gitlab.com/gitlab-org/gitlab/-/issues/438275 # # default: '$CI_REGISTRY/components/opentofu/gitlab-opentofu:$[[ inputs.opentofu_version ]]' # default: '$CI_REGISTRY/components/opentofu/gitlab-opentofu:$[[ inputs.version ]]-opentofu$[[ inputs.opentofu_version ]]' # description: 'Tag of the gitlab-opentofu image.' image_name: default: 'gitlab-opentofu' description: 'Image name for the job images. Hosted under `image_registry_base`.' # Configuration root_dir: default: ${CI_PROJECT_DIR} description: 'Root directory for the OpenTofu project.' state_name: default: default description: 'Remote OpenTofu state name.' plan_name: default: 'plan' description: 'The name of the plan cache and plan json file.' destroy: default: false type: boolean description: 'Indicate if the plan should be a destroy plan. You may want to change the `plan_name` input to `destroy-plan` which is the default for the destroy job.' artifacts_access: default: 'none' description: 'Access level for the plan artifact. See https://docs.gitlab.com/ee/ci/yaml/#artifactsaccess for possible values.' --- '$[[ inputs.as ]]': stage: $[[ inputs.stage ]] environment: name: $[[ inputs.state_name ]] action: prepare resource_group: $[[ inputs.state_name ]] artifacts: # Terraform's cache files can include secrets which can be accidentally exposed. # Please exercise caution when utilizing secrets in your Terraform infrastructure and # consider limiting access to artifacts or take other security measures to protect sensitive information. # See https://docs.gitlab.com/ee/ci/yaml/#artifactsaccess for possible values. access: '$[[ inputs.artifacts_access ]]' paths: - $TF_ROOT/$[[ inputs.plan_name ]].cache reports: terraform: $TF_ROOT/$[[ inputs.plan_name]].json rules: - if: $CI_PIPELINE_SOURCE == "merge_request_event" - if: $CI_OPEN_MERGE_REQUESTS # Don't add it to a *branch* pipeline if it's already in a merge request pipeline. when: never - if: $CI_COMMIT_BRANCH # If there's no open merge request, add it to a *branch* pipeline instead. cache: key: "$__CACHE_KEY_HACK" paths: - $TF_ROOT/.terraform/ variables: # FIXME: work around to make slashes work in `cache:key`. see https://gitlab.com/gitlab-org/gitlab/-/issues/439898 __CACHE_KEY_HACK: "$[[ inputs.root_dir ]]" TF_ROOT: $[[ inputs.root_dir ]] TF_STATE_NAME: $[[ inputs.state_name ]] TF_PLAN_NAME: $[[ inputs.plan_name ]] image: name: '$[[ inputs.image_registry_base ]]/$[[ inputs.image_name ]]:$[[ inputs.version ]]-opentofu$[[ inputs.opentofu_version ]]' script: - | args="" if [ "$[[ inputs.destroy ]]" == "true" ]; then echo "Planning for a destroy" args="-destroy" fi - gitlab-tofu plan $args - gitlab-tofu plan-json