terragrunt.hcl 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. locals {
  2. # If you want to use any of the variables in _this_ file, you have to load them here.
  3. # However, they will all be available as inputs to the module loaded in terraform.source
  4. # below.
  5. # e.g. inherited variables:
  6. #environment_vars = read_terragrunt_config(find_in_parent_folders("env.hcl"))
  7. #partition_vars = read_terragrunt_config(find_in_parent_folders("partition.hcl"))
  8. #region_vars = read_terragrunt_config(find_in_parent_folders("region.hcl"))
  9. #account_vars = read_terragrunt_config(find_in_parent_folders("account.hcl"))
  10. #global_vars = read_terragrunt_config(find_in_parent_folders("globals.hcl"))
  11. # Extract out common variables for reuse
  12. #env = local.environment_vars.locals.environment
  13. }
  14. # For provisioning only. Comment out after provisioning
  15. generate "provider" {
  16. path = "provider.tf"
  17. if_exists = "overwrite_terragrunt"
  18. contents = <<EOF
  19. provider "template" {
  20. version = "~> 2.1"
  21. }
  22. provider "aws" {
  23. version = "~> 3.0"
  24. region = "${local.aws_region}"
  25. profile = "tmp"
  26. # Only these AWS Account IDs may be operated on by this template
  27. allowed_account_ids = ["${local.account_id}"]
  28. }
  29. EOF
  30. }
  31. # Terragrunt will copy the Terraform configurations specified by the source parameter, along with any files in the
  32. # working directory, into a temporary folder, and execute your Terraform commands in that folder.
  33. terraform {
  34. # Double slash is intentional and required to show root of modules
  35. source = "git@github.mdr.defpoint.com:mdr-engineering/xdr-terraform-modules.git//base/iam?ref=v1.0.0"
  36. }
  37. # Include all settings from the root terragrunt.hcl file
  38. include {
  39. path = find_in_parent_folders()
  40. }
  41. # These are the variables we have to pass in to use the module specified in the terragrunt source above
  42. inputs = {
  43. # All of the inputs from the inherited hcl files are available automatically
  44. # (via the `inputs` section of the root `terragrunt.hcl`). However, modules
  45. # will be more flexible if you specify particular input values.
  46. tags = {
  47. Terraform = "aws/${basename(get_parent_terragrunt_dir())}/${path_relative_to_include()}/"
  48. }
  49. }