Reputation: 61
In this oportunity I came to you because I have a doubt, I've been reading the AWS APIs documentation about create instance dynamically in node js, I understand every steps of they example code, and I even tried it and runned it. My question is, is there an API or WAY provied by AWS to create multiples instances in differents regions?
I'm thinking to do it by my own, but I wanna know if there is an efficent way already developed to do this.
Thank you so much before hand.
Upvotes: 0
Views: 833
Reputation: 270274
All AWS API calls are made to a single region.
Therefore, if you wish to launch resources in multiple regions, you will need to send commands to each region individually.
An exception to this are global services (IAM, CloudFront, Route 53, WAF).
Also, AWS CloudFormation StackSets can launch resources in multiple regions:
Upvotes: 1