Tags: chime/terraform-aws-alternat
Tags
Remove the creation of the lambda vpc endpoint (#111) * resolves #110 Remove the creation of the lambda vpc endpoint * Remove endpoints variable * Trigger tests * Trigger tests --------- Co-authored-by: Juan Sanchez <[email protected]> Co-authored-by: Ben Whaley <[email protected]>
Updates repo structure to conform to the Terraform Registry requireme… …nts (#98) * Updates repo structure to conform to the Terraform Registry requirements * fix path * update readme * Test public ip * Instance state must be running 🤦♂️ * Explain name collisions
Upgrade lambda runtime to python3.12 (#92) * Upgrade lambda runtime to python3.12 AWS announced they are ending support for Python 3.8 in Lambda on October 14, 2023. This follows Python 3.8 End-Of-Life which is scheduled October, 2024. * Fix dependencies * Reference issue in botocore * Bump required provider version * Bump Docker base image to python 3.12 --------- Co-authored-by: Ben Whaley <[email protected]>
Allow overriding NAT Gateway for fallback (#89) It may be the case that only NAT Gateway is kept for fallback from alternat instances, since paying for separate gateways per AZ may not be worth the extra `NatGatewayHours` costs. In such case, it can be useful to manage the single NAT Gateway outside of the module, and provide its ID to Lambda functions: ``` resource "aws_nat_gateway" "this" {} module "alternat" { lambda_environment_variables = { NAT_GATEWAY_ID = aws_nat_gateway.this.id } } ```
PreviousNext