provider/aws: Update lambda_function with runtime for tests

This commit is contained in:
clint shryock 2017-01-05 11:24:17 -06:00
parent 6cd358e115
commit f4c5b9fada
2 changed files with 2 additions and 0 deletions

View File

@ -295,6 +295,7 @@ resource "aws_lambda_function" "authorizer" {
function_name = "tf_acc_api_gateway_authorizer"
role = "${aws_iam_role.iam_for_lambda.arn}"
handler = "exports.example"
runtime = "nodejs4.3"
}
`

View File

@ -261,6 +261,7 @@ resource "aws_lambda_function" "authorizer" {
function_name = "tf_acc_api_gateway_authorizer"
role = "${aws_iam_role.iam_for_lambda.arn}"
handler = "exports.example"
runtime = "nodejs4.3"
}
resource "aws_api_gateway_authorizer" "test" {