Skip to content

v2.0.0 🌈

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 20 Sep 15:50
13b9883

Release v2.0.0

⚠️ This is a breaking change to all v1.x.x versions and will require all current projects to re-import the state based on the new layout.

What's Changed

  • ⚠️ Terraform state is changed ⚠️
  • Removes the submodule (eliminates nested module)
  • Changes the index of the locals by using an md5sum
  • Shortens the whole module and reduces its complexity

How to import the terraform state:

terraform import 'cloudflare_record.this["<MD5>"]' <ZONE_ID>/<RECORD_ID>
  • <MD5> This is the locals index value you can ses during terraform plan
  • <ZONE_ID> Cloudflare zone ID
  • <RECORD_ID> You can see our documentation how to obtain it[1]

[1] https://github.com/Flaconi/devops-docs/blob/master/doc/howto/tf-cloudflare-import-existing-records-into-tfstate.md

Once you have imported the state, you will still need to execute a terraform apply which will update the imported record further.

PR's

  • OPS-6197 Fix index issue when restructuring tfvars file @cytopia (#11)