Skip to content

Commit 29f8c97

Browse files
authored
readme update (#31)
* readme * fmt
1 parent f49f24a commit 29f8c97

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ module "pipeline" {
6060
"workload2" = "223344556677"
6161
"workload3" = "334455667788"
6262
}
63-
# Optional: For sequential deployment in specific order
64-
# sequential = ["workload1", "workload2", "workload3"]
6563
}
6664
```
6765

locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ locals {
1414

1515
ordered_accounts = length(var.sequential) > 0 ? [
1616
for name in var.sequential : {
17-
name = name
17+
name = name
1818
account_id = var.accounts[name]
1919
}
2020
] : []

0 commit comments

Comments
 (0)