terragrunt.hcl 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. environment_vars = read_terragrunt_config(find_in_parent_folders("env.hcl"))
  6. partition_vars = read_terragrunt_config(find_in_parent_folders("partition.hcl"))
  7. region_vars = read_terragrunt_config(find_in_parent_folders("region.hcl"))
  8. account_vars = read_terragrunt_config(find_in_parent_folders("account.hcl"))
  9. global_vars = read_terragrunt_config(find_in_parent_folders("globals.hcl"))
  10. }
  11. # Terragrunt will copy the Terraform configurations specified by the source parameter, along with any files in the
  12. # working directory, into a temporary folder, and execute your Terraform commands in that folder.
  13. terraform {
  14. # Double slash is intentional and required to show root of modules
  15. source = "git@github.xdr.accenturefederalcyber.com:mdr-engineering/xdr-terraform-modules.git//base/sensu-configuration?ref=v3.5.13"
  16. }
  17. dependency "vpc-system-services" {
  18. config_path = "../010-vpc-system-services"
  19. }
  20. dependency "instance-sensu" {
  21. config_path = "../095-instance-sensu"
  22. }
  23. #Sensu specific provider
  24. generate "sensu-provider" {
  25. path = "sensu-provider.tf"
  26. if_exists = "overwrite_terragrunt"
  27. contents = <<EOF
  28. #Provider block for Sensu.
  29. provider "sensu" {
  30. api_url = "https://${dependency.instance-sensu.outputs.internal_alb_address}:8080"
  31. username = "admin"
  32. namespace = "default"
  33. insecure_skip_tls_verify = "true"
  34. #password is set with the SENSU_PASSWORD enviroment variable
  35. }
  36. EOF
  37. }
  38. # Include all settings from the root terragrunt.hcl file
  39. include {
  40. path = find_in_parent_folders()
  41. }
  42. # These are the variables we have to pass in to use the module specified in the terragrunt source above
  43. inputs = {
  44. # All of the inputs from the inherited hcl files are available automatically
  45. # (via the `inputs` section of the root `terragrunt.hcl`). However, modules
  46. # will be more flexible if you specify particular input values.
  47. tags = {
  48. Purpose = "Sensu"
  49. Terraform = "aws/${basename(get_parent_terragrunt_dir())}/${path_relative_to_include()}/"
  50. }
  51. vpc_id = dependency.vpc-system-services.outputs.vpc_id
  52. azs = dependency.vpc-system-services.outputs.azs
  53. subnets = dependency.vpc-system-services.outputs.private_subnets
  54. }
  55. terraform_version_constraint = "= 1.0.7"
  56. terragrunt_version_constraint = "= 0.32.3"