quota-monitor-for-aws
quota-monitor-for-aws copied to clipboard
Support Deployment aws-limit-monitor on any other region(ex:ap-south-1) not on us-east-1
As per documentation ,this solution is needed to be deployed on us-east-1, but in some case some accounts are not onboarded with the specific region, so have to go with other region. So for that case, what would be work around , please suggest!!
Currently, the way solution works is, it needs to refresh Trusted Advisor service limit checks. Trusted Advisor only supports us-east-1 as its data plane, reference here
"You can use the following endpoint to access the AWS Support API: https://support.us-east-1.amazonaws.com/"
This is the reason we recommend deploying in us-east-1. One way to overcome this would be to update this line of code as
new AWS.Support({region: 'us-east-1'}) // hard reference to us-east-1 for AWS Support endpoint
We are working on releasing the next major version v6.0.0 of the solution in August and this design is going to continue to be the same where microservices using Trusted Advisor and Support APIs will only support us-east-1 deployment as we want to avoid cross region API calls by default.
updated in v6.0.0