我在以下位置有此terraform.tfvars
文件:
root
|_prod
|_eu-west-2
|_dev
|_terraform.tfvars
|_cognito
|_terragrunt.hcl
它具有以下值:
terragrunt = {
terraform {
extra_arguments "custom_vars" {
commands = [
"apply",
"plan",
"import",
"push",
"refresh"
]
# With the get_tfvars_dir() function, you can use relative paths!
arguments = [
"-var-file=terraform.tfvars"
]
}
}
}
reply_to_email_address = "[email protected]"
我在文档中找不到如何访问此文件。我尝试了
get_env
:include {
path = find_in_parent_folders()
}
terraform {
// double `//` before module are important!
source = "../../../../../terraform-modules//cognito"
}
inputs = {
name = "pvg-online-${local.env}"
reply_to_email_address = get_env("reply_to_email_address", "")
}
但它设置为默认的
""
最佳答案
实际上,这是一个非常常见的用例,以至于terragrunt具有内置功能。
在您的terragrunt.hcl
中,包含一个terraform{}
块,如下所示:
terraform {
# Note that the double-slash (//) syntax is not needed for local relative paths
source = "../../../../../terraform-modules/cognito"
extra_arguments "common_var" {
commands = get_terraform_commands_that_need_vars()
arguments = ["-var-file=${get_terragrunt_dir()}/../terraform.tfvars"]
}
}
inputs = {
name = "pvg-online-${local.env}"
# Since reply_to_email_address is provided in the parent terraform.tfvars file,
# it is not needed as an input
}
请注意,使用
get_terraform_commands_that_need_vars()
可以避免列出所有参数,也可以避免列出get_terragrunt_dir()
来查找terragrunt.hcl
的目录。关于terraform - 在terraform.tfvars中的terragrunt中访问变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60790583/