Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit a590da5

Browse files
authored
fix: Replace defaul AMI for WIndows (#3445)
Replace Window AMI by Windows_Server-2022-English-Full-ECS_Optimized-* close #3423
1 parent 00e5479 commit a590da5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: examples/multi-runner/templates/runner-configs/windows-x64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ runner_config:
1818
runner_boot_time_in_minutes: 20
1919
ami_filter:
2020
name:
21-
- Windows_Server-2022-English-Core-ContainersLatest-*
21+
- Windows_Server-2022-English-Full-ECS_Optimized-*
2222
state:
2323
- available

Diff for: modules/runners/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ locals {
1818
kms_key_arn = var.kms_key_arn != null ? var.kms_key_arn : ""
1919
s3_location_runner_distribution = var.enable_runner_binaries_syncer ? "s3://${var.s3_runner_binaries.id}/${var.s3_runner_binaries.key}" : ""
2020
default_ami = {
21-
"windows" = { name = ["Windows_Server-2022-English-Core-ContainersLatest-*"] }
21+
"windows" = { name = ["Windows_Server-2022-English-Full-ECS_Optimized-*"] }
2222
"linux" = var.runner_architecture == "arm64" ? { name = ["amzn2-ami-kernel-5.*-hvm-*-arm64-gp2"] } : { name = ["amzn2-ami-kernel-5.*-hvm-*-x86_64-gp2"] }
2323
}
2424

0 commit comments

Comments
 (0)