-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Lambda Qualified Invoke ARN #26439
Comments
@fishcharlie @justinretzolk I can take a look at this if that's alright |
@teddylear Good with me. I haven't really looked at this code base at all, so it'd be greatly appreciated! |
@fishcharlie Created a PR to hopefully resolve issue. Please let me know if there are any questions or concerns. |
This functionality has been released in v4.31.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Community Note
Description
Currently the Lambda resource has
qualified_arn
andinvoke_arn
. But there is no Invoke ARN for the Qualified ARN. This means when passing it into API Gateway, it doesn't use the provisioned capacity you might have set.You can work around this by doing:
replace(aws_lambda_function.function.invoke_arn, aws_lambda_function.function.arn, aws_lambda_function.function.qualified_arn)
, but that is a really ugly hack.New or Affected Resource(s)
NA
Potential Terraform Configuration
NA
References
NA
The text was updated successfully, but these errors were encountered: