From 728d17ca9c5f46f39b1126d38fd7124c5523f783 Mon Sep 17 00:00:00 2001 From: Jared Holgate Date: Mon, 30 Sep 2024 19:20:19 +0100 Subject: [PATCH] Update e2e tests --- .github/workflows/end-to-end-test.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/end-to-end-test.yml b/.github/workflows/end-to-end-test.yml index 876c362..c239376 100644 --- a/.github/workflows/end-to-end-test.yml +++ b/.github/workflows/end-to-end-test.yml @@ -154,9 +154,15 @@ jobs: "westus3", "australiaeast" ) + + $locationsSingleAvailabilityZone = @( + "ukwest" + ) + $jobIndex = ${{ strategy.job-index }} $locationIndex = $jobIndex % $locations.Length $location = $locations[$locationIndex] + $location2 = $locationsSingleAvailabilityZone[$locationIndex % $locationsSingleAvailabilityZone.Length] $enableSelfHostedAgents = "false" if($selfHostedAgents -eq "public" -or $selfHostedAgents -eq "private") { @@ -210,11 +216,11 @@ jobs: } $Inputs = @{} - $Inputs["iac"] = $infrastructureAsCode - $Inputs["bootstrap"] = "alz_$versionControlSystemMapped" - $Inputs["starter"] = "test" + $Inputs["iac_type"] = $infrastructureAsCode + $Inputs["bootstrap_module_name"] = "alz_$versionControlSystemMapped" + $Inputs["starter_module_name"] = "test" $Inputs["bootstrap_location"] = $location - $Inputs["starter_location"] = $location + $Inputs["starter_location"] = [$location, %location2] $Inputs["bootstrap_subscription_id"] = "" $Inputs["service_name"] = "alz" $Inputs["environment_name"] = $uniqueId