Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)

Expand Down