Hi,
I have successfully installed "VMware vRealize Orchestrator Plug-In for Amazon Web Services 1.0.0.2" on our vRA environment and was able to add an amazon account as well.
Problem is that when executing the "Add Amazon Account" workflow, not all regions are picked up and added by the plugin. i.e. us-east-2 is missing.
Looking at the Add Amazon account workflow in more detail, inside Get Endpoint URLs, the following script does not seem to get all regions and load to the endpoints array.
var regions = AWSRegionManager.findAllRegions();
endpoints = new Array();
for (var i = 0; i < regions.length; i ++) {
endpoints.push(regions[i].getEndpoint());
}
It smells like a bug for this aws vro plugin within "Add Amazon Account" workflow...
Anyone encountered this issue as well?