A CDK (v2) Construct Library for Secure REST APIs
Project description
aws-cdk-secure-api
An unofficial AWS CDK v2 Construct Library for Secure REST APIs.
Documentation: https://aws-cdk-secure-api.readthedocs.io.
Secure Rest Api
The SecureRestApi construct creates a (public) REST API secured behind an API key, which needs to be specified in the x-api-key header for all requests.
Install
pip install aws-cdk-secure-api
Features
A CDK Construct which sets up a RestApi secured behind an API key.
An API key is auto-generated and stored in SSM Parameter Store (which is a free service) as needed.
Local cache for the API key, so that API calls are not needed in future CDK deployments.
Helper methods for SecureRestApi, to make it easier to integrate a method for an AWS Lambda function for example.
Usage
The SecureRestApi construct represents a Secure REST API in Amazon API Gateway.
Use add_resource, add_lambda_methods, and add_methods to configure the API model, as shown below.
from aws_cdk_secure_api import Http, SecureRestApi
from aws_cdk import (aws_apigateway as apigw, aws_lambda as lambda_)
get_handler = lambda_.Function(self, 'lambda1', runtime=lambda_.Runtime.PYTHON_3_9, ...)
put_handler = lambda_.Function(self, 'lambda2', runtime=lambda_.Runtime.PYTHON_3_9, ...)
api = SecureRestApi(
self, 'api',
rest_api_name='My Secure Service',
# optional: specify a deployment stage
deploy_options=apigw.StageOptions(stage_name='dev')
)
api.add_lambda_methods(get_handler, 'GET') # GET /
api.add_lambda_methods(put_handler, Http.PUT, Http.POST) # PUT /, POST /
AWS Profile
Note that if you normally pass the --profile to the cdk tool, for example such as:
cdk deploy --profile my-aws-profile
The CDK construct won’t be able to detect the AWS profile in this particular case. A few workarounds can be used for this:
The environment variable AWS_PROFILE can be set before calling the cdk tool.
The profile attribute can be passed in to the config parameter for SecureRestApi.
The profile context variable can be passed in to the cdk tool, as shown below:
cdk deploy --profile my-profile -c profile=my-profile
API Keys
Here is the process that the CDK construct uses for generating or using an API key for a REST API.
First, it tries to read the API key from local cache, which is located in your home directory, under ~/.cdk/cache/apigw_api_keys.json.
If an API key is found, then it proceeds to use the cached key value, and does not perform the following steps.
An API call is made to read the key from AWS SSM Parameter Store. The param name is /{STACK NAME}/api-key, where {STACK NAME} is the name of the CDK stack.
If the parameter does not exist, an random API key value is auto-generated, and a new SSM Parameter is created in the same AWS account and region that the CDK stack is deployed to.
The API key value is then cached on the local drive, under the ~/.cdk/cache folder.
Stack Outputs
The following stack outputs will additionally be added to the CDK stack:
APIEndpoint - The base endpoint of the Secure REST API.
Note: this output will not show up if override_endpoint_name is disabled in the config parameter.
APIKey - The API key for the endpoint, which needs to be specified as a value in an HTTP request’s x-api-key header.
Credits
This package was created with Cookiecutter and the rnag/cookiecutter-pypackage project template.
History
0.1.1 (2022-06-24)
Bugfixes
Remove typing.Literal usage, so code is compatible with Python 3.7
Add an import from __future__ import annotations to modules where it was missing.
Features and Improvements
Update to use the string value of the name attribute for a Http Enum member, instead of the value attribute.
0.1.0 (2022-06-24)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aws-cdk-secure-api-0.1.2.tar.gz
.
File metadata
- Download URL: aws-cdk-secure-api-0.1.2.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0c1bf34e683ba2dbb0c48b23f5b915d7a05c79ae7d22a01f10511758546be9f |
|
MD5 | 2332f3918d9ba674c3b958db126d5a0d |
|
BLAKE2b-256 | 22f729ac62f737ea6117927d9d7622d73934db6be9dbeecfe93b5b6369a80fd7 |
File details
Details for the file aws_cdk_secure_api-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: aws_cdk_secure_api-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 177ae01ee2dd4f8cfa80088328cbf0f3fbcf9af04569f531b78d29f13cef1274 |
|
MD5 | 779298e5d5ae5ac73626a08303d3bc76 |
|
BLAKE2b-256 | 85caa96b56608184db9feca5f15b47353829989c141ccb78573b72a88beb26b0 |