Region Selection for Provsioning

Hi Team,

In order to deploy a VM, there is no region selection for public clouds. Is it something achievable any any other means ? Every time we deploy a VM, it goes to the same availability zone.

Regards
RJ

I think Resource Pool offers this in public clouds. In an integrated multi-region cloud these can be scoped to specific regions, which can be selected at provision time.

We do prompt for region when you are deploying via Instances. If you are referring to a custom Catalog, you can create an Option List with REST API call to:
https://morpheus.bungebash.com/api/options/zoneRegions with a Request script of:
if (input.targetCloud) { results.push({name: 'zoneId', value: input.targetCloud}) }

Essentially you need to pass the cloud ID to filter the list of available zones.