-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
F addlambda provided #6676
F addlambda provided #6676
Conversation
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, thanks so much @kikitux! 🚀
--- PASS: TestAccAWSLambdaFunction_importS3 (18.79s)
--- PASS: TestAccAWSLambdaFunction_nilDeadLetterConfig (18.97s)
--- PASS: TestAccAWSLambdaFunction_expectFilenameAndS3Attributes (20.89s)
--- PASS: TestAccAWSLambdaFunction_importLocalFile_VPC (27.54s)
--- PASS: TestAccAWSLambdaFunction_importLocalFile (32.77s)
--- PASS: TestAccAWSLambdaFunction_versioned (34.09s)
--- PASS: TestAccAWSLambdaFunction_basic (45.85s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_noRuntime (0.46s)
--- PASS: TestAccAWSLambdaFunction_s3 (27.29s)
--- PASS: TestAccAWSLambdaFunction_VPCUpdate (49.03s)
--- PASS: TestAccAWSLambdaFunction_updateRuntime (50.41s)
--- PASS: TestAccAWSLambdaFunction_VPC (51.92s)
--- PASS: TestAccAWSLambdaFunction_localUpdate (34.78s)
--- PASS: TestAccAWSLambdaFunction_localUpdate_nameOnly (29.80s)
--- PASS: TestAccAWSLambdaFunction_versionedUpdate (65.22s)
--- PASS: TestAccAWSLambdaFunction_VPCRemoval (65.36s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfigUpdated (70.72s)
--- PASS: TestAccAWSLambdaFunction_s3Update_unversioned (38.28s)
--- PASS: TestAccAWSLambdaFunction_tracingConfig (76.26s)
--- PASS: TestAccAWSLambdaFunction_encryptedEnvVariables (76.32s)
--- PASS: TestAccAWSLambdaFunction_concurrencyCycle (79.57s)
--- PASS: TestAccAWSLambdaFunction_concurrency (81.24s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_nodeJs43 (36.25s)
--- PASS: TestAccAWSLambdaFunction_DeadLetterConfig (82.76s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_python36 (29.10s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_provided (34.43s)
--- PASS: TestAccAWSLambdaFunction_s3Update_basic (55.56s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_python27 (43.63s)
--- PASS: TestAccAWSLambdaFunction_VPC_withInvocation (89.91s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_java8 (41.10s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_python37 (33.37s)
--- PASS: TestAccAWSLambdaFunction_runtimeValidation_ruby25 (27.56s)
--- PASS: TestAccAWSLambdaFunction_envVariables (94.30s)
--- PASS: TestAccAWSLambdaFunction_tags (45.16s)
--- PASS: TestAccAWSLambdaFunction_EmptyVpcConfig (92.83s)
This has been released in version 1.51.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
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. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Implement runtime
provided
in aws lambdahttps://docs.aws.amazon.com/lambda/latest/dg/API_CreateFunction.html#API_CreateFunction_RequestSyntax
Changes proposed in this pull request:
func TestAccAWSLambdaFunction_runtimeValidation_provided()
func testAccAWSLambdaConfigProvidedRuntime()
lambda.RuntimeProvided
as valid runtime tofunc resourceAwsLambdaFunction()
Output from acceptance testing:
Thanks!
alvaro.