Skip to content

Commit 5cfaf33

Browse files
committed
add W10 to computer filter
1 parent 065827f commit 5cfaf33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test_code/AZURE_MACHINES/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ variable "AZURE_WIN_MACHINE_CONFIGS" {
120120
variable "AZURE_COMPUTE_FILTER" {
121121
type = list(any)
122122
description = "list of compute instances to filter"
123-
default = ["UBUNTU_20_04_LTS"]
123+
default = ["UBUNTU_20_04_LTS", "W10_ENT_21H2"]
124124
# default = ["UBUNTU_18_04_LTS", "UBUNTU_20_04_LTS", "RHEL_8"]
125125
}
126126

test_code/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module "azure_machines" {
3939
PRIVATE_KEY_PATH = var.PRIVATE_KEY_PATH
4040
location = "West US 3"
4141
name_format = local.name_format
42-
AZURE_COMPUTE_FILTER = ["UBUNTU_18_04_LTS", "UBUNTU_20_04_LTS", "UBUNTU_22_04_LTS", "RHEL_8", "CENTOS_8"]
42+
AZURE_COMPUTE_FILTER = ["UBUNTU_18_04_LTS", "UBUNTU_20_04_LTS", "UBUNTU_22_04_LTS", "RHEL_8", "CENTOS_8", "W10_ENT_21H2"]
4343
CI = var.CI
4444
PUBLIC_KEY = var.PUBLIC_KEY
4545
providers = {

0 commit comments

Comments
 (0)