Skip to content

Commit

Permalink
feat(aws-lambda) support more regions
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco authored and p0pr0ck5 committed Aug 4, 2017
1 parent f8c5ca8 commit 9c76c45
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kong/plugins/aws-lambda/schema.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ return {
aws_key = {type = "string", required = true},
aws_secret = {type = "string", required = true},
aws_region = {type = "string", required = true, enum = {
"us-east-1", "us-east-2", "ap-northeast-1", "ap-northeast-2", "us-west-2",
"ap-southeast-1", "ap-southeast-2", "eu-central-1", "eu-west-1"}},
"us-east-1", "us-east-2", "us-west-1", "us-west-2",
"ap-northeast-1", "ap-northeast-2", "ap-southeast-1",
"ap-southeast-2", "ap-south-1", "ca-central-1", "eu-central-1",
"eu-west-1", "eu-west-2", "sa-east-1"}},
function_name = {type="string", required = true},
qualifier = {type = "string"},
invocation_type = {type = "string", required = true, default = "RequestResponse",
Expand Down

0 comments on commit 9c76c45

Please sign in to comment.