From efb84f1d04dac9701d45030411fb0241add43223 Mon Sep 17 00:00:00 2001 From: Jan Egil Ring Date: Wed, 4 Mar 2026 09:30:36 +0100 Subject: [PATCH] Add sleep command for eventual consistency after group creation Signed-off-by: Jan Egil Ring --- .../walkthrough/challenge-01/solution-01.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/03-Azure/01-03-Infrastructure/01_Sovereign_Cloud/walkthrough/challenge-01/solution-01.md b/03-Azure/01-03-Infrastructure/01_Sovereign_Cloud/walkthrough/challenge-01/solution-01.md index 013e6617b..73667d16a 100644 --- a/03-Azure/01-03-Infrastructure/01_Sovereign_Cloud/walkthrough/challenge-01/solution-01.md +++ b/03-Azure/01-03-Infrastructure/01_Sovereign_Cloud/walkthrough/challenge-01/solution-01.md @@ -438,6 +438,9 @@ Create a security group: az ad group create \ --display-name "${GROUP_PREFIX}-SovereignOps-Team" \ --mail-nickname "${GROUP_PREFIX}-SovereignOps" + +# Wait for eventual consistency +sleep 20 ``` ### Step 2: Assign Built-in Roles to the SovereignOps Team @@ -542,6 +545,9 @@ az ad group create \ --display-name "${GROUP_PREFIX}-Compliance-Officers" \ --mail-nickname "${GROUP_PREFIX}-ComplianceOfficers" +# Wait for eventual consistency +sleep 20 + # Get the group's object ID COMPLIANCE_GROUP_ID=$(az ad group show --group "${GROUP_PREFIX}-Compliance-Officers" --query id -o tsv)