我有一个创建多个输出的模块。每个输出的值是一个帐号。
我想在资源上使用count参数来使用上述模块中的值进行迭代。但是,我得知您无法对变量默认值或分层插值进行插值。
在Terraform中处理此问题的正确方法是什么?
variable "service_node_accounts" {
description = "List of Account IDs"
type = "list"
default = ["${module.accounts.qa}", "${module.accounts.staging}", "${module.accounts.prod}"]
}
data "aws_ami" "service_node_1_0" {
filter {
name = "name"
values = ["service-node-1.0"]
}
owners = ["self"] # Canonical
}
resource "aws_ami_launch_permission" "service_node_1_0" {
count = "${length(var.service_node_accounts)}"
image_id = "${aws_ami.service_node_1_0.id}"
account_id = "${var.service_node_accounts[count.index]}"
}
terraform plan...
default may not contain interpolations
答案 0 :(得分:0)
在允许插值的地方考虑使用locals。
locals {
# Untested but should work in theory
service_node_accounts = ["${module.accounts.qa}", "${module.accounts.staging}", "${module.accounts.prod}"]
}