#terraform-0_12 (2019-07)
Discuss upgrading to terraform 0.12
Archive: https://archive.sweetops.com/terraform-0_12/
2019-07-09
does tf 12 allow you to interpolate backends?
not yet
use environment variables instead
or a hybrid
TF_CLI_ARGS_init="-backend-config=/something.ini"
then write your config to /something.ini
Backends are configured directly in Terraform files in the terraform
section.
more explanation on how to use envs: https://www.reddit.com/r/Terraform/comments/afznb2/terraform_without_wrappers_is_awesome/
24 votes and 10 comments so far on Reddit
2019-07-16
PSA: If you’re upgrading to terraform 0.12 and the VSCode extension for Terraform Syntax highlighting, add this to your settings.json
Should resolve all the maddening false positives on syntax errors
(You have to restart the IDE as well)
Hi! Is there any plans to implement hcl2 support?
thanks for the reference, and the workaround, the broken highlighting is maddening
Hi! Is there any plans to implement hcl2 support?
glad it helped someone!
2019-07-18
@Erik Osterman (Cloud Posse) When do you expect to have the the majority of .12 conversion complete?
we converted about 35% of all our modules. We actively working on it when we are not 100% consumed by customers’ projects. I would say in the next 1-2 weeks
2019-07-23
for_each on maps, it’s coming https://github.com/hashicorp/terraform/pull/21922
Allow instances to be created according to a map or a set of strings. locals { little_map = { a = 1 b = 2 } } resource "random_pet" "server" { for_each = little_ma…
been following that one, with a lot of excitement
Allow instances to be created according to a map or a set of strings. locals { little_map = { a = 1 b = 2 } } resource "random_pet" "server" { for_each = little_ma…
so nice!
2019-07-26
https://github.com/terraformdns/terraform-dns-recordsets/blob/195fdf758b7100bf8b958a08e954925662d8980e/main.tf how for_each can/will look like
Terraform module for creating DNS recordsets using RFC 2136 dynamic updates - terraformdns/terraform-dns-recordsets
2019-07-28
This is very helpful! Thanks @maarten
2019-07-29
Hey Folks, Trying to find some Terraform Modules related to AWS - app stream service ( for creating fleets and stacks) any help appreciated
2019-07-31
(and probably data source as well)
Bam! Nice!