We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49f24a commit 29f8c97Copy full SHA for 29f8c97
README.md
@@ -60,8 +60,6 @@ module "pipeline" {
60
"workload2" = "223344556677"
61
"workload3" = "334455667788"
62
}
63
- # Optional: For sequential deployment in specific order
64
- # sequential = ["workload1", "workload2", "workload3"]
65
66
```
67
locals.tf
@@ -14,7 +14,7 @@ locals {
14
15
ordered_accounts = length(var.sequential) > 0 ? [
16
for name in var.sequential : {
17
- name = name
+ name = name
18
account_id = var.accounts[name]
19
20
] : []
0 commit comments