Skip to content

Instantly share code, notes, and snippets.

@mhmdio
Created July 3, 2021 21:07
Show Gist options
  • Save mhmdio/20637c5cfe471a93813f5c9d67179258 to your computer and use it in GitHub Desktop.
Save mhmdio/20637c5cfe471a93813f5c9d67179258 to your computer and use it in GitHub Desktop.
terraform yamldecode
locals {
raw_value = yamldecode(file("${path.module}/example.yaml"))
normalized_value = {
name = tostring(try(local.raw_value.name, null))
groups = try(local.raw_value.groups, [])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment