Skip to content

Commit 7a55485

Browse files
committed
ongoing
1 parent fd7c1b7 commit 7a55485

File tree

5 files changed

+71
-52
lines changed

5 files changed

+71
-52
lines changed

examples/multi-runner-cppal/.terraform.lock.hcl

Lines changed: 63 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
output "webhook_endpoint" {
2-
value = module.runners.webhook.endpoint
2+
# value = module.runners.webhook.endpoint
3+
value = module.multi-runner.webhook.endpoint
34
}
45

56
output "webhook_secret" {
@@ -9,6 +10,6 @@ output "webhook_secret" {
910

1011
output "deprecated_variables_warning" {
1112
value = join("", [
12-
module.runners.deprecated_variables_warning,
13+
module.multi-runner.deprecated_variables_warning,
1314
])
1415
}

examples/multi-runner-cppal/templates/runner-configs/windows-2019.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runner_config:
2424
runner_boot_time_in_minutes: 20
2525
ami:
2626
owners: [ "047402373783" ]
27-
filter: { 'name': ['github-runner-windows-2019-amd64-202508111835'] }
27+
ami_filter: { 'name': ['github-runner-windows-2019-amd64-202508111835'], 'state': ["available"] }
2828
block_device_mappings:
2929
- device_name: /dev/sda1
3030
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/windows-2022.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ runner_config:
2323
delay_webhook_event: 0
2424
scale_down_schedule_expression: cron(* * * * ? *)
2525
runner_boot_time_in_minutes: 20
26-
ami:
27-
owners: [ "047402373783" ]
28-
filter: { 'name': ['github-runner-windows-2022-amd64-202503112051'] }
26+
ami_owners: [ "047402373783" ]
27+
ami_filter: { 'name': ['github-runner-windows-2022-amd64-202503112051'], 'state': ["available"] }
2928
block_device_mappings:
3029
- device_name: /dev/sda1
3130
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/windows-2025.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ runner_config:
2323
delay_webhook_event: 0
2424
scale_down_schedule_expression: cron(* * * * ? *)
2525
runner_boot_time_in_minutes: 20
26-
ami:
27-
owners: [ "047402373783" ]
28-
filter: { 'name': ['github-runner-windows-2025-amd64-202504151722'] }
26+
ami_owners: [ "047402373783" ]
27+
ami_filter: { 'name': ['github-runner-windows-2025-amd64-202504151722'], 'state': ["available"] }
2928
block_device_mappings:
3029
- device_name: /dev/sda1
3130
delete_on_termination: true

0 commit comments

Comments
 (0)