在几个月没有处理基础架构更改之后,我尝试在一台新机器上加载我们的 terragrunt 文件并遇到了几个错误,我找不到解决方案。
基本上,当存在or选项时,terraform似乎忽略了terraform.tfvars
文件(或与此相关的任何文件)。*.auto.tfvars
-var
-var-file
我们使用分层 terragrunt 配置为不同的环境提供不同的凭据配置,这就是为什么有一个account.tfvars
包含所有数据的文件的原因。
直到今年 8 月,一切都正常工作,所以也许有一个我在更新日志中没有发现的变化?
模块特定terraform.tfvars
:
terragrunt = {
include {
path = "${find_in_parent_folders()}"
}
terraform {
source = "../../../modules//cockpit"
}
}
bucket_prefix = "cockpit-"
domain_name = "cockpit.donutapp.io"
家长terraform.tfvars
:
terragrunt = {
remote_state {
backend = "s3"
config {
encrypt = true
bucket = "my-${get_aws_account_id()}-tfstate"
key = "production/${path_relative_to_include()}/terraform.tfstate"
region = "us-east-1"
dynamodb_table = "terraform-locks"
}
}
terraform {
extra_arguments "bucket" {
commands = ["${get_terraform_commands_that_need_vars()}"]
optional_var_files = [
"${get_tfvars_dir()}/${find_in_parent_folders("account.tfvars", "ignore")}",
]
arguments = [
"-var",
"terraform_bucket=my-${get_aws_account_id()}-tfstate",
]
}
extra_arguments "disable_input" {
commands = ["${get_terraform_commands_that_need_input()}"]
arguments = ["-input=false"]
}
}
}
terragrunt 执行的命令:
terraform plan -var terraform_bucket=my-accountid-tfstate \
-var-file=some-path/../account.tfvars \
-input=false
当我将-var-file=terraform.tfvars
作为参数添加到文件夹中的terraform plan
命令时.terragrunt-cache
,它确实有效,因此它不会自动加载。
有什么想法吗?