-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Works only in us-east-1 #19
Comments
This is a current limitation of the solution which will be addressed in an upcoming release. Thanks for pointing out that repo - we're looking at a similar approach. |
Is there any update on this? Would certainly be helpful to deploy this in a different region (e.g., us-west-2). Is there a way this can be modified to support this? |
yeah, I'd like to deploy to ap-southeast-2 |
Any updates on this? Would like to deploy it in ap-southeast-1 |
Correct me if I'm wrong @mohsanjaffery, but could we make this extensible to non us-east-1 regions by simply making the Lambda layer CopyLayerVersion available in all other regions? That was the error I encountered when launching the stack in us-west-2. |
Could you not at least WARN people that this only works in us-east-1? Like mention it in the documentation? I've wasted a lot of time with this (I'm in eu-west-1) |
So I've investigated this a bit further. It would be a nice feature to add, but I think the complexity cost might outweigh the benefits. The current template is limited to the I can think of two possible ways to create the ACM Certificate in
Custom resourceCreate a custom resource that creates the ACM Certificate in The downside of this is that it makes the template more complicated (more custom resources). It would also put the onus on either the custom resource or the user to validate the ACM certificate. StacksetConvert the This has a few downsides:
|
I tried to integrate this solution in an existing infrastructure deployed in eu-west-2 but due to the constraint around Lambda@Edge, deployment is failing (L@E should be deployed in us-east-1).
Would be great to have a proper handling of this case using something like https://github.com/yvele/aws-cfn-custom-resource-lambda-edge.
The text was updated successfully, but these errors were encountered: