Commit d5844358 authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 9.0.0 [skip ci]

# [9.0.0](https://gitlab.com/to-be-continuous/terraform/compare/8.1.5...9.0.0) (2026-02-02)

### Features

* **tflint:** upgrade tflint base image since bundle one is deprecated - [#93](https://gitlab.com/to-be-continuous/terraform/issues/93) ([bb0ba5f4](https://gitlab.com/to-be-continuous/terraform/commit/bb0ba5f467a56e08c24a02c44eceb78ac298a72c)

)

### BREAKING CHANGES

* **tflint:** `tflint-args` is now only '--recursive' and a new input `tflint-config-file` / `TF_TFLINT_CONFIG_FILE` is now available,
defaulting to `.tflint.hcl` (relative to $TF_PROJECT_DIR) and autogenerated in case it doesn't exist (embedding aws, azurerm and google plugins).

Signed-off-by: default avatarkilianpaquier <git@kilianpaquier.dev>
parent eaeaca8e
Loading
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
# [9.0.0](https://gitlab.com/to-be-continuous/terraform/compare/8.1.5...9.0.0) (2026-02-02)


### Features

* **tflint:** upgrade tflint base image since bundle one is deprecated - [#93](https://gitlab.com/to-be-continuous/terraform/issues/93) ([bb0ba5f](https://gitlab.com/to-be-continuous/terraform/commit/bb0ba5f467a56e08c24a02c44eceb78ac298a72c))


### BREAKING CHANGES

* **tflint:** `tflint-args` is now only '--recursive' and a new input `tflint-config-file` / `TF_TFLINT_CONFIG_FILE` is now available,
defaulting to `.tflint.hcl` (relative to $TF_PROJECT_DIR) and autogenerated in case it doesn't exist (embedding aws, azurerm and google plugins).

Signed-off-by: kilianpaquier <git@kilianpaquier.dev>

## [8.1.5](https://gitlab.com/to-be-continuous/terraform/compare/8.1.4...8.1.5) (2026-01-08)


+8 −8
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Add the following to your `.gitlab-ci.yml`:
```yaml
include:
  # 1: include the component
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@8.1.5
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@9.0.0
    # 2: set/override component inputs
    inputs:
      # ⚠ this is only an example
@@ -32,7 +32,7 @@ Add the following to your `.gitlab-ci.yml`:
include:
  # 1: include the template
  - project: 'to-be-continuous/terraform'
    ref: '8.1.5'
    ref: '9.0.0'
    file: '/templates/gitlab-ci-terraform.yml'

variables:
@@ -772,9 +772,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@8.1.5
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@9.0.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform-vault@8.1.5
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform-vault@9.0.0
    inputs:
      # audience claim for JWT
      vault-oidc-aud: "https://vault.acme.host"
@@ -836,9 +836,9 @@ With a common default `GCP_OIDC_PROVIDER` and `GCP_OIDC_ACCOUNT` configuration f
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@8.1.5
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@9.0.0
  # Google Cloud variant
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform-gcp@8.1.5
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform-gcp@9.0.0
    inputs:
      # common OIDC config for non-prod envs
      gcp-oidc-provider: "projects/<gcp_nonprod_proj_id>/locations/global/workloadIdentityPools/<pool_id>/providers/<provider_id>"
@@ -878,9 +878,9 @@ The variant supports the following configuration:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@8.1.5
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform@9.0.0
  # AWS variant
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform-aws@8.1.5
  - component: $CI_SERVER_FQDN/to-be-continuous/terraform/gitlab-ci-terraform-aws@9.0.0
    inputs:
      # audience claim for JWT
      aws-oidc-aud: "https://gitlab.acme.com"
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ variables:
.tf-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "terraform", "8.1.5"]
      command: ["--service", "terraform", "9.0.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
+1 −1
Original line number Diff line number Diff line
@@ -1152,7 +1152,7 @@ stages:
    entrypoint: [""]
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "terraform", "8.1.5"]
      command: ["--service", "terraform", "9.0.0"]
  before_script:
    # set environment context (before unscope_variables)
    - export environment_type=$ENV_TYPE