Hiera makes Terraform DRY

raffraffraff 22 hours ago | next
I’ve been using Hiera (Puppet yaml data store) to source data for terraform. As a long time puppet user, when I started writing terraform code I really missed hiera. Turns out someone ported it to Go, and someone else turned that into a terraform provider. It’s a game changer. No need for terragrunt or terramate. Hiera can return anything from a single value to a very complex data block that can be used to feed a module or a whole stack. Hiera needs some information about where you’re deploying to, and it gets this in the in the provider configuration in the form of key/vals: I use environment, region & stack. I decided to use a workspace naming convention that encodes these (eg: prod_use1.network). For each workspace, terraform can automatically figure out exactly what lookups it needs to do, and hiera returns native terraform data relevant to that workspace only. I have 100% dry code, and no need to create a separate directory for each environment/region state. I run my terraform init/apply in the top-level directory no matter where I’m deploying. The result is that once I’ve written my modules and stacks, I can build out a whole data center by creating few workspaces and running terraform init && terraform apply” in each one. Zero extra files or directories. Dry as a bone

dpifke 19 hours ago | parent | next
Cursory Googling returns two Terraform hiera providers, borh last updated in 2020. Are you using either of these, or something else?

https://github.com/ribbybibby/terraform-provider-hiera https://github.com/lyraproj/hiera_terraform

raffraffraff 18 hours ago | root | parent | next 
Neither! It’s this one: https://github.com/chriskuchin/terraform-provider-hiera5

On the terraform registry here: https://registry.terraform.io/providers/chriskuchin/hiera5



Date
October 30, 2022