1

我正在尝试构建用于将基础架构部署到 Microsoft Azure 云的Terragrunt脚本。事情进展得很好,但我无法弄清楚一件事。

setup 的结构如下所示:

rootdir
  terragrunt.hcl
  someconfig.hcl
    module1dir
      terragrunt.hcl
      config.auto.tfvars.json
    module2dir   
      terragrunt.hcl
      config.auto.tfvars.json
    module3dir   
      terragrunt.hcl
      config.auto.tfvars.json

每个模块都使用 Terraform 自动加载 tfvars 功能和config.auto.tfvars.json. 我想要的是将这些文件放在目录结构之外,并以某种方式指示 Terragrunt 将正确的外部配置文件应用于正确的子模块。

有任何想法吗?

4

1 回答 1

0

我通过以下方式解决了这个问题:

定义您计划使用的环境变量,该变量应包含配置文件的位置。确保它不会与现有的任何东西发生冲突。在本例中,我们将使用TGR_CFGDIR。在外部配置模块中放置模块配置文件并确保它们被正确命名。每个文件都应命名为模块并以.auto.tfvars.json. 所以如果你的模块被命名为 foo 你应该有配置文件foo.auto.tfvars.json。更改您的 terragrunt 模块 (terragrunt.hcl) 以具有以下语句:

locals {
  moduleconfig = get_env("TGR_CFGDIR")
  modulename   = basename(get_terragrunt_dir())
}

generate "configuration" {
  path              = "config.auto.tfvars.json"
  if_exists         = "overwrite"
  disable_signature = true
  contents          = file("${local.moduleconfig}/${local.modulename}.auto.tfvars.json")
}

最后像这样调用 terragrunt cli:

TGR_CFGDIR="<configdir>" terragrunt "<somecommand>"
于 2020-10-22T15:43:13.487 回答