From 6703c1e673fb059abcdb1dda077a19f3e37a0bae Mon Sep 17 00:00:00 2001 From: Josh Brand Date: Fri, 23 Sep 2022 16:19:16 -0400 Subject: [PATCH] Enos: Add missing tags and use az_finder for AZs to Autopilot scenario (#17309) --- enos/enos-scenario-autopilot.hcl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/enos/enos-scenario-autopilot.hcl b/enos/enos-scenario-autopilot.hcl index 4e744ba20..4c8e560de 100644 --- a/enos/enos-scenario-autopilot.hcl +++ b/enos/enos-scenario-autopilot.hcl @@ -59,10 +59,13 @@ scenario "autopilot" { } step "create_vpc" { - module = module.create_vpc + module = module.create_vpc + depends_on = [step.find_azs] variables { - ami_architectures = [matrix.arch] + ami_architectures = [matrix.arch] + availability_zones = step.find_azs.availability_zones + common_tags = local.tags } }