A Terraform module for creating a new lambda resource on an existing API gateway in AWS.
The API gateway requires:
- An existing API gateway
- A lambda function packaged as zip
- existing VPC
The API gateway resource consists of:
- resource
- deplyoment
- deployment stage
- lambda function
To use the module, include something like the following in your terraform configuration:
module "api_gateway_lambda_resource" {
source = "infrablocks/api-gateway-lambda-resource/aws"
region = "eu-west-2"
component = "lambda-resource"
deployment_identifier = "production"
account_id = "11122233355"
vpc_id = "VPC-1234"
api_gateway_id = "x3H41ka22w"
api_gateway_root_resource_id = "${var.api_gatewa_root_resource_id}"
api_gateway_stage_name = "production"
resource_path_part = "/my-lambda"
lambda_subnet_ids = "subnet-id-1"
lambda_zip_path = "lambda.zip"
lambda_ingress_cidr_blocks = "10.10.0.0/16"
lambda_egress_cidr_blocks = "0.0.0.0/8"
lambda_environment_variables = '{"TEST_ENV_VARIABLE"="test-value"}'
lambda_function_name = "lambda-function"
lambda_handler = "handler.hello"
resource_http_method = "GET"
}
See the Terraform registry entry for more details.
Name | Description | Default | Required |
---|---|---|---|
region | The region into which to deploy the API gateway | - | yes |
component | The component for which the load balancer is being created | - | yes |
deployment_identifier | An identifier for this instantiation | - | yes |
account_id | AWS account ID | - | yes |
vpc_id | VPC to deploy lambda to | - | yes |
api_gateway_id | api gateway id to create the resource for | - | yes |
api_gateway_root_resource_id | root resource of the api Gateway | - | yes |
api_gateway_stage_name | API gateway deployment stage name to deploy after creation of the resource | - | yes |
resource_path_part | path to use for API gateway resource | - | yes |
lambda_subnet_ids | subnet ids for the lambda | - | yes |
lambda_zip_path | location of your lambda zip archive | - | yes |
lambda_ingress_cidr_blocks | ingress CIDR for lambda | - | yes |
lambda_egress_cidr_blocks | egress CIDR for lambda | - | yes |
lambda_function_name | lambda function name | - | yes |
lambda_handler | handler path for lambda | - | yes |
lambda_environment_variables | environment variables for lambda | - | yes |
resource_http_method | HTTP method for the API gateway resource | - | yes |
Name | Description |
---|---|
stage_execution_arn | The execution ARN of the API gateway stage |
stage_invoke_url | The invocation URL for the API gateway stage |
stage_name | The name of the stage for API gateway |
lambda_role_arn | ARN of the Lambda role |
This module is compatible with Terraform versions greater than or equal to Terraform 0.14.
In order for the build to run correctly, a few tools will need to be installed on your development machine:
- Ruby (2.3.1)
- Bundler
- git
- git-crypt
- gnupg
- direnv
Installing the required tools is best managed by homebrew.
To install homebrew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Then, to install the required tools:
# ruby
brew install rbenv
brew install ruby-build
echo 'eval "$(rbenv init - bash)"' >> ~/.bash_profile
echo 'eval "$(rbenv init - zsh)"' >> ~/.zshrc
eval "$(rbenv init -)"
rbenv install 2.3.1
rbenv rehash
rbenv local 2.3.1
gem install bundler
# git, git-crypt, gnupg
brew install git
brew install git-crypt
brew install gnupg
# direnv
brew install direnv
echo "$(direnv hook bash)" >> ~/.bash_profile
echo "$(direnv hook zsh)" >> ~/.zshrc
eval "$(direnv hook $SHELL)"
direnv allow <repository-directory>
To provision module infrastructure, run tests and then destroy that infrastructure, execute:
./go
To provision the module prerequisites:
./go deployment:prerequisites:provision[<deployment_identifier>]
To provision the module contents:
./go deployment:harness:provision[<deployment_identifier>]
To destroy the module contents:
./go deployment:harness:destroy[<deployment_identifier>]
To destroy the module prerequisites:
./go deployment:prerequisites:destroy[<deployment_identifier>]
To generate an SSH key pair:
ssh-keygen -t rsa -b 4096 -C [email protected] -N '' -f config/secrets/keys/bastion/ssh
To encrypt a GPG key for use by CircleCI:
openssl aes-256-cbc \
-e \
-md sha1 \
-in ./config/secrets/ci/gpg.private \
-out ./.circleci/gpg.private.enc \
-k "<passphrase>"
To check decryption is working correctly:
openssl aes-256-cbc \
-d \
-md sha1 \
-in ./.circleci/gpg.private.enc \
-k "<passphrase>"
Bug reports and pull requests are welcome on GitHub at https://github.com/infrablocks/terraform-aws-api-gateway-lambda-resource. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The library is available as open source under the terms of the MIT License.