Skip to content

Tags: chime/terraform-aws-alternat

Tags

v0.8.3

Toggle v0.8.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Use archive_file resource for compatibility with CI (#126)

v0.8.3-beta

Toggle v0.8.3-beta's commit message

Verified

This commit was signed with the committer’s verified signature.
bwhaley Ben Whaley
Use archive_file resource for compatibility with CI

v0.8.2

Toggle v0.8.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixes bash issue with parsing with multiple VPC CIDR blocks (#121)

* Fixes bash issue with parsing with multiple VPC CIDR blocks

v0.8.1

Toggle v0.8.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Pins archive provider to fix deprecated status warning (#118)

v0.8.0

Toggle v0.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Updates Alternat to use Amazon Linux 2023 (#116)

* Updates Alternat to use Amazon Linux 2023

* remove out of date comment and now unused workflow

* install terraform

* fix test

* retries

* use assert

* sudo make me

* newline

* whitespace

v0.7.0

Toggle v0.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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]>

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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]>

v0.4.10

Toggle v0.4.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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
  }
}
```

v0.4.10-test

Toggle v0.4.10-test's commit message

Verified

This commit was signed with the committer’s verified signature.
bwhaley Ben Whaley
switch to resource