The next step in the onboarding scenario is to add one or more cloud zones to the project. With the API, you can add cloud zones.

You can add cloud zones by using a PATCH API call that uses the /iaas/api/projects/${NEW_PROJECT_ID} URL.

{
 "zoneAssignmentConfigurations": [
 {
 "storageLimitGB": 0,
 "cpuLimit": 0,
 "memoryLimitMB": 0,
 "zoneId": "${CLOUDZONE_ID1}",
 "maxNumberInstances": 0,
 "priority": 0
 },
 {
 "storageLimitGB": 100,
 "cpuLimit": 100,
 "memoryLimitMB": 100,
 "zoneId": "${CLOUDZONE_ID2}",
 "maxNumberInstances": 20,
 "priority": 0
 }
 ]
}