Create Pull Request
| Date | Scan | Status | Result |
|---|---|---|---|
| 2026-01-14 00:00 | #250 | in_progress |
Clean
|
| 2026-01-13 00:00 | #246 | completed |
Clean
|
| 2026-01-11 00:00 | #240 | completed |
Clean
|
| 2026-01-10 00:00 | #237 | completed |
Clean
|
| 2026-01-09 00:34 | #234 | completed |
Clean
|
| 2026-01-08 00:53 | #231 | completed |
Clean
|
| 2026-01-06 18:15 | #225 | cancelled |
Clean
|
| 2025-08-17 00:01 | #83 | cancelled |
Clean
|
| 2025-07-13 21:37 | #48 | completed |
Biased
|
| 2025-07-09 13:09 | #3 | cancelled |
Clean
|
| 2025-07-08 04:23 | #2 | cancelled |
Biased
|
az role assignment create --assignee $OID `
--role "Owner" `
--scope "/subscriptions/$SUBID"
$DEVCID = az devcenter admin devcenter show -n <devcenterName> --query id -o tsv
Write-Output $DEVCID
az devcenter admin project create -n <projectName> `
--description "My first project." `
--dev-center-id $DEVCID
$SUBID = az account show --name <subscriptionName> --query id -o tsv
Write-Output $SUBID
$OID = az ad sp list --display-name <devcenterName> --query [].id -o tsv
Write-Output $OID
# Remove the group default scope for next the command.
az configure --defaults group=
$ROID = az role definition list -n "Owner" --scope /subscriptions/$SUBID --query [].name -o tsv
Write-Output $ROID
# Set the default resource group again.
az configure --defaults group=<resourceGroupName>
$roles = "{`"$($ROID)`":{}}"
az devcenter admin project-environment-type create `
-n <availableEnvironmentType> `
--project <projectName> `
--identity-type "SystemAssigned" `
--roles $roles `
--deployment-target-id "/subscriptions/$SUBID" `
--status Enabled
$MYOID = az ad signed-in-user show --query id -o tsv
Write-Output $MYOID
az role assignment create --assignee $MYOID `
--role "DevCenter Project Admin" `
--scope "/subscriptions/$SUBID"
az role assignment create --assignee $MYOID `
--role "Deployment Environments User" `
--scope "/subscriptions/$SUBID"