Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions modules/meshstack/noop/e2e/runner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module "noop" {
bbd_draft = true
}
runner_ref = module.backplane.runner_ref
depends_on = [module.backplane] # Without the backplane there is no runner and no place to run the BB.
}

resource "meshstack_building_block_v2" "this" {
Expand All @@ -43,4 +44,6 @@ resource "meshstack_building_block_v2" "this" {
multi_select_json = { value_multi_select = ["multi2", "multi1"] }
}
}

depends_on = [module.backplane] # Without the backplane there is no runner and no place to run the BB.
}
Loading