From 225a332d329bd59e40aba9a786e54afbf921438f Mon Sep 17 00:00:00 2001 From: Andy Hay <3116331+Andy-Hay@users.noreply.github.com> Date: Fri, 20 Dec 2024 17:31:07 +0000 Subject: [PATCH] Clarify the vm sku command for Azure (#1108) --- .../private-managed-cloud/setup-guide-azure/index.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/get-started/snowplow-bdp/private-managed-cloud/setup-guide-azure/index.md b/docs/get-started/snowplow-bdp/private-managed-cloud/setup-guide-azure/index.md index f2b29416a1..918cc50b98 100644 --- a/docs/get-started/snowplow-bdp/private-managed-cloud/setup-guide-azure/index.md +++ b/docs/get-started/snowplow-bdp/private-managed-cloud/setup-guide-azure/index.md @@ -83,13 +83,18 @@ You must check that the following infrastructure is available in the subscriptio Snowplow requires the below instances and databases. We have provided the Azure CLI commands that can be used to check their availability. Please note that they are required in all availability zones in the region for redundancy. -Instances DSv5 (preferred), DSv4 and DSv3 series: +Instances D4s_v5 (preferred), or D4s_v4 series: -`az vm list-skus --location --size Standard_D4s --all --output table` +```bash +az vm list-skus --location --size Standard_D4s_v5 --all --output table +az vm list-skus --location --size Standard_D4s_v4 --all --output table +``` Database B_Standard_B2s: -`az vm list-skus --location --size Standard_B2s --all --output table` +```bash +az vm list-skus --location --size Standard_B2s --all --output table +``` Please note that the above is for a minimal deployment. If you will be sending over one billion events per month through the pipeline, please speak to us for advice on what instance sizes are recommended.