-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f8f042
commit a0920e2
Showing
11 changed files
with
308 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
locals { | ||
actual_api_keys = flatten([ | ||
for api in var.raw_api_gateway_rest_apis : [ | ||
for key in api.api_keys : { | ||
api = api.suffix | ||
name = format("%s/%s", api.suffix, key) | ||
} | ||
] | ||
]) | ||
} | ||
|
||
resource "aws_api_gateway_api_key" "api_keys" { | ||
for_each = { for key in local.actual_api_keys : key.name => key } | ||
|
||
name = each.value["name"] | ||
description = format("Automatically generated key for %s API Gateway - managed by Terraform", each.value["api"]) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
resource "aws_api_gateway_deployment" "deployments" { | ||
for_each = { for api in local.actual_raw_api_gateway_rest_apis : api.suffix => api } | ||
|
||
rest_api_id = aws_api_gateway_rest_api.api_gateway[each.value["suffix"]].id | ||
triggers = { | ||
redeployment = sha1(jsonencode(aws_api_gateway_rest_api.api_gateway[each.value["suffix"]].body)) | ||
} | ||
|
||
lifecycle { | ||
create_before_destroy = true | ||
} | ||
|
||
depends_on = [ | ||
aws_api_gateway_rest_api.api_gateway | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
resource "aws_api_gateway_stage" "stages" { | ||
for_each = { for api in local.actual_raw_api_gateway_rest_apis : api.suffix => api } | ||
|
||
deployment_id = aws_api_gateway_deployment.deployments[each.value["suffix"]].id | ||
rest_api_id = aws_api_gateway_rest_api.api_gateway[each.value["suffix"]].id | ||
stage_name = var.environment | ||
tags = each.value["tags"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
resource "aws_api_gateway_usage_plan" "usage_plans" { | ||
for_each = { for api in local.actual_raw_api_gateway_rest_apis : api.suffix => api } | ||
|
||
name = format("%s-usage-plan", each.value["suffix"]) | ||
description = format("API Gateway usage plan for %s - managed by Terraform", each.value["suffix"]) | ||
|
||
api_stages { | ||
api_id = aws_api_gateway_rest_api.api_gateway[each.value["suffix"]].id | ||
stage = aws_api_gateway_stage.stages[each.value["suffix"]].stage_name | ||
} | ||
|
||
quota_settings { | ||
limit = try(each.value["quota_limit"], 10) | ||
offset = try(each.value["quota_offset"], 0) | ||
period = try(each.value["quota_period"], "DAY") | ||
} | ||
|
||
throttle_settings { | ||
burst_limit = try(each.value["burst_limit"], 5) | ||
rate_limit = try(each.value["rate_limit"], 10) | ||
} | ||
|
||
depends_on = [ | ||
aws_api_gateway_rest_api.api_gateway, | ||
aws_api_gateway_stage.stages | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
resource "aws_api_gateway_usage_plan_key" "keys" { | ||
for_each = { for key in local.actual_api_keys : key.name => key } | ||
|
||
key_id = aws_api_gateway_api_key.api_keys[each.value["name"]].id | ||
key_type = "API_KEY" | ||
usage_plan_id = aws_api_gateway_usage_plan.usage_plans[each.value["api"]].id | ||
|
||
depends_on = [ | ||
aws_api_gateway_usage_plan.usage_plans, | ||
aws_api_gateway_api_key.api_keys | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
locals { | ||
actual_lambda_permissions = flatten([ | ||
for api in local.actual_raw_api_gateway_rest_apis : [ | ||
for lambda in api.allowed_lambdas : [ | ||
{ | ||
key : format("%s/%s/stage", api.suffix, lambda) | ||
function_name : lambda | ||
source_arn : format("%s/*", aws_api_gateway_stage.stages[api.suffix].arn) | ||
statement_id = format("AllowExecutionFrom%sAPIGatewayStage", replace(api.suffix, "-", "")) | ||
}, | ||
{ | ||
key : format("%s/%s/api", api.suffix, lambda) | ||
function_name : lambda | ||
source_arn : format("%s/*", aws_api_gateway_rest_api.api_gateway[api.suffix].arn) | ||
statement_id = format("AllowExecutionFrom%sAPIGateway", replace(api.suffix, "-", "")) | ||
}, | ||
{ | ||
key : format("%s/%s/deployment", api.suffix, lambda) | ||
function_name : lambda | ||
source_arn : format("%s*", aws_api_gateway_deployment.deployments[api.suffix].execution_arn) | ||
statement_id = format("AllowExecutionFrom%sAPIGatewayDeployment", replace(api.suffix, "-", "")) | ||
} | ||
] | ||
] | ||
]) | ||
} | ||
|
||
resource "aws_lambda_permission" "allow_execution" { | ||
for_each = { for permission in local.actual_lambda_permissions : permission.key => permission } | ||
|
||
depends_on = [ | ||
aws_api_gateway_stage.stages, | ||
aws_api_gateway_rest_api.api_gateway, | ||
aws_api_gateway_deployment.deployments | ||
] | ||
|
||
statement_id = each.value["statement_id"] | ||
action = "lambda:InvokeFunction" | ||
function_name = each.value["function_name"] | ||
principal = "apigateway.amazonaws.com" | ||
source_arn = each.value["source_arn"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
terraform { | ||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.61.0" | ||
} | ||
} | ||
required_version = "~> 1.5.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
locals { | ||
actual_raw_api_gateway_rest_apis = flatten([ | ||
for api in var.raw_api_gateway_rest_apis : merge(api, { | ||
open_api_definition = templatefile(api.open_api_file_path, try(api.template_input, {})) | ||
}) | ||
]) | ||
} | ||
|
||
resource "aws_api_gateway_rest_api" "api_gateway" { | ||
|
||
for_each = { for api in local.actual_raw_api_gateway_rest_apis : api.suffix => api } | ||
|
||
name = format(lower("aws-${var.environment}-${var.application_name}-%s"), each.value["suffix"]) | ||
description = format("%s- managed by Terraform", each.value["description"]) | ||
body = each.value["open_api_definition"] | ||
tags = each.value["tags"] | ||
|
||
lifecycle { | ||
create_before_destroy = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
variable "environment" { | ||
description = "Which environment this is being instantiated in." | ||
type = string | ||
validation { | ||
condition = contains(["dev", "test", "prod"], var.environment) | ||
error_message = "Must be either dev, test or prod" | ||
} | ||
} | ||
|
||
variable "application_name" { | ||
description = "Name of the application utilising resource." | ||
type = string | ||
} | ||
|
||
variable "raw_api_gateway_rest_apis" { | ||
description = <<EOF | ||
Data structure | ||
--------------- | ||
A list of dictionaries, where each dictionary has the following attributes: | ||
REQUIRED | ||
--------- | ||
- suffix : Suffix to use when creating the RESTAPI Gateway | ||
- open_api_file_path : Path to OpenAPI definition file | ||
- description : A human-friendly description of the API | ||
- tags : A dictionary of tags, required to tag Stage to ensure its protected by WAF. | ||
OPTIONAL | ||
--------- | ||
- template_input : A dictionary of variable input for the OpenAPI definition file (leave blank if no template required) | ||
- allowed_lambdas : A list of strings, where each string is the function_name of a lambda to allow access to. | ||
- quota_limit : Maximum number of requests that can be made in a given time period, defaults to 10. | ||
- quota_offset : Number of requests subtracted from the given limit in the initial time period, defaults to 0. | ||
- quota_period : Time period in which the limit applies. Valid values are "DAY", "WEEK" or "MONTH". Defaults to "DAY" | ||
- burst_limit : The API request burst limit, the maximum rate limit over a time ranging from one to a few seconds, depending upon whether the underlying token bucket is at its full capacity. Defaults to 5. | ||
- rate_limit : The API request steady-state rate limit, defaults to 10. | ||
- api_keys : List of strings, where each string is name of an API key to create for the API, defaults to empty list. | ||
EOF | ||
type = list( | ||
object({ | ||
suffix = string, | ||
description = string, | ||
tags = map(string), | ||
open_api_file_path = string, | ||
template_input = optional(map(string), {}), | ||
quota_limit = optional(number, 10), | ||
quota_offset = optional(number, 0), | ||
quota_period = optional(string, "DAY"), | ||
burst_limit = optional(number, 5), | ||
rate_limit = optional(number, 10) | ||
allowed_lambdas = optional(list(string), []) | ||
api_keys = optional(list(string), []) | ||
}) | ||
) | ||
validation { | ||
condition = alltrue([ | ||
for api in var.raw_api_gateway_rest_apis : (api.quota_limit >= 0) | ||
]) | ||
error_message = "quota_limit must be greater than or equal to 0" | ||
} | ||
|
||
validation { | ||
condition = alltrue([ | ||
for api in var.raw_api_gateway_rest_apis : (api.quota_offset >= 0) | ||
]) | ||
error_message = "quota_offset must be greater than or equal to 0" | ||
} | ||
|
||
validation { | ||
condition = alltrue([ | ||
for api in var.raw_api_gateway_rest_apis : contains(["DAY", "WEEK", "MONTH"], api.quota_period) | ||
]) | ||
error_message = "quota_period must be one of the following: DAY, WEEK, MONTH" | ||
} | ||
|
||
validation { | ||
condition = alltrue([ | ||
for api in var.raw_api_gateway_rest_apis : (api.burst_limit >= 0) | ||
]) | ||
error_message = "burst_limit must be greater than or equal to 0" | ||
} | ||
|
||
validation { | ||
condition = alltrue([ | ||
for api in var.raw_api_gateway_rest_apis : (api.rate_limit >= 0) | ||
]) | ||
error_message = "rate_limit must be greater than or equal to 0" | ||
} | ||
} |