-
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
aws_lambda_function_url: add invoke_mode attribute to resource and data source #30547
aws_lambda_function_url: add invoke_mode attribute to resource and data source #30547
Conversation
Community NoteVoting for Prioritization
For Submitters
|
Thank you for your contribution! 🚀 Please note that typically Go dependency changes are handled in this repository by dependabot or the maintainers. This is to prevent pull request merge conflicts and further delay reviews of contributions. Remove any changes to the Additional details:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccLambdaFunctionURL' PKG=lambda ACCTEST_PARALLELISM=3
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/lambda/... -v -count 1 -parallel 3 -run=TestAccLambdaFunctionURL -timeout 180m
=== RUN TestAccLambdaFunctionURLDataSource_basic
=== PAUSE TestAccLambdaFunctionURLDataSource_basic
=== RUN TestAccLambdaFunctionURL_basic
=== PAUSE TestAccLambdaFunctionURL_basic
=== RUN TestAccLambdaFunctionURL_Cors
=== PAUSE TestAccLambdaFunctionURL_Cors
=== RUN TestAccLambdaFunctionURL_Alias
=== PAUSE TestAccLambdaFunctionURL_Alias
=== RUN TestAccLambdaFunctionURL_TwoURLs
=== PAUSE TestAccLambdaFunctionURL_TwoURLs
=== RUN TestAccLambdaFunctionURL_invokeMode
=== PAUSE TestAccLambdaFunctionURL_invokeMode
=== CONT TestAccLambdaFunctionURLDataSource_basic
=== CONT TestAccLambdaFunctionURL_Alias
=== CONT TestAccLambdaFunctionURL_invokeMode
--- PASS: TestAccLambdaFunctionURL_Alias (50.00s)
=== CONT TestAccLambdaFunctionURL_TwoURLs
--- PASS: TestAccLambdaFunctionURLDataSource_basic (52.34s)
=== CONT TestAccLambdaFunctionURL_Cors
--- PASS: TestAccLambdaFunctionURL_TwoURLs (42.09s)
=== CONT TestAccLambdaFunctionURL_basic
--- PASS: TestAccLambdaFunctionURL_invokeMode (96.73s)
--- PASS: TestAccLambdaFunctionURL_Cors (70.05s)
--- PASS: TestAccLambdaFunctionURL_basic (41.47s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/lambda 139.385s
@roberth-k Thanks for the contribution 🎉 👏. |
This functionality has been released in v4.63.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! |
invoke_mode was introduced in 4.63.0 hashicorp/terraform-provider-aws#30547
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Adds the
invoke_mode
attribute to theaws_lambda_function_url
resource and data source. For backwards compatibility, the default value isBUFFERED
.Relations
Closes #30541
References
Output from Acceptance Testing