คำถามติดแท็ก count

5
Terraform - ใช้ลูปซ้อนกับจำนวน
ฉันพยายามใช้ลูปซ้อนในดิน ฉันมีตัวแปรลิสต์สองตัวlist_of_allowed_accountsและlist_of_imagesและกำลังมองหาการวนซ้ำในรายการlist_of_imagesแล้ววนซ้ำลิสlist_of_allowed_accountsต์ นี่คือรหัส Terraform ของฉัน variable "list_of_allowed_accounts" { type = "list" default = ["111111111", "2222222"] } variable "list_of_images" { type = "list" default = ["alpine", "java", "jenkins"] } data "template_file" "ecr_policy_allowed_accounts" { template = "${file("${path.module}/ecr_policy.tpl")}" vars { count = "${length(var.list_of_allowed_accounts)}" account_id = "${element(var.list_of_allowed_accounts, count.index)}" } } resource "aws_ecr_repository_policy" "repo_policy_allowed_accounts" { …
18 terraform  count 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.