Skip to content

Revert "Merge branch 'revert-allow-dots-ff' into 'master'"

Timo Furrer requested to merge remove-allow-dots-ff into master

What does this MR do and why?

This change set is a "revert" of a "revert".

The initial change was merged in Resolve "[Feature flag] Rollout of `allow_dots_... (!117824 - merged) The change set of this MR matched that of this aforementioned MR.

It was reverted, because it was merged into %15.11, but was meant to be merged into %16.0.

The MRs that reverted it were:

How to set up and validate locally

  1. Create a new project.
  2. Create a pipeline with the Terraform.latest.gitlab-ci.yml template.
  3. Set the TF_STATE_NAME variable to terraform.tfstate:
include:
  - template: Terraform.latest.gitlab-ci.yml

variables:
  TF_STATE_NAME: terraform.tfstate
  1. Add main.tf with dummy content (e.g. single output definition of literal) and an http backend config:
terraform {
  backend "http" {}
}

output "foobar" {
  value = 42
}
  1. Verify that pipeline runs and a TF state called terraform.tfstate exists.

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Merge request reports