Skip to content

Commit

Permalink
Fix step pipeline region argument assignment (#44)
Browse files Browse the repository at this point in the history
Signed-off-by: Luis Cavalcante <luis@turbot.com>
  • Loading branch information
luisffc authored Mar 8, 2024
1 parent 0da9bb2 commit b2fdb0c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions docs/flowpipe-hcl/step/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ pipeline "my_pipe" {
step "pipeline" "list_buckets" {
pipeline = aws.pipeline.list_buckets
region = step.input.select_region.value
args = {
region = step.input.select_region.value
}
}
}
```
Expand Down Expand Up @@ -183,7 +185,9 @@ pipeline "my_pipe" {
step "pipeline" "list_buckets" {
pipeline = aws.pipeline.list_buckets
region = step.input.select_region.value
args = {
region = step.input.select_region.value
}
}
}
Expand All @@ -210,7 +214,9 @@ pipeline "my_pipe" {
pipeline = aws.pipeline.list_buckets
for_each = step.input.select_regions.value
region = each.value
args = {
region = each.value
}
}
}
Expand Down Expand Up @@ -247,7 +253,9 @@ pipeline "my_pipe" {
pipeline = aws.pipeline.list_buckets
for_each = step.input.select_regions.value
region = each.value
args = {
region = each.value
}
}
}
Expand Down

0 comments on commit b2fdb0c

Please sign in to comment.