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)