Releases: cloudposse/terraform-aws-alb-ingress
Releases · cloudposse/terraform-aws-alb-ingress
v0.28.0
v0.27.0
v0.26.0
- No changes
v0.25.2
🚀 Enhancements
Add listener_http_header_conditions to the resources where it is missing @wszychta (#57)
what
- This PR gives ability to define
listener_http_header_conditions
for all types of listeners created by this module.
why
- We have discovered that we are unable to have that option when we are using
hosts
conditions. No matter if it is authenticated or unauthenticated hosts. - In my opinion this option should be avaliable for all types of checks.
v0.25.1
🚀 Enhancements
Use context tags @nitrocode (#65)
what
- Use context tags
why
- This way we can pass in the
context
to tag the resource instead of having to supply thetags
in manually. Thetags
are already passed into thecontext
inputs.
references
N/A
v0.25.0
include protocol_version for the default target group @azarudeena (#64)
what
- ability to define the protocol version for the target groups.
- made in this sync with the alb module
why
- Need to have a case for GRPC service and health-checks were failing.
references
- AWS ELB Health Check
v0.24.3
Override target group name @nitrocode (#63)
what
- Override target group name
why
- Target group name is limited to 32 chars
- Overriding it will allow us to tag it correctly using the context and reduce the name
- Workaround is to create the target group outside of the module and feed it in, but that's no fun
references
N/A
git.io->cloudposse.tools update @dylanbannon (#62)
what and why
Change all references to git.io/build-harness
into cloudposse.tools/build-harness
, since git.io
redirects will stop working on April 29th, 2022.
References
- DEV-143
v0.24.2
🚀 Enhancements
Feature/remove template provider @morganseznec (#61)
what
- Remove unused and deprecated template provider
why
- hashicorp/template is now deprecated
- hashicorp/template has not been compiled and shared for M1 processors (Macbook Air M1, Macbook Pro, ...)
- template provider is not used in this module...
references
v0.24.1
🤖 Automatic Updates
Update context.tf @cloudpossebot (#59)
what
This is an auto-generated PR that updates the context.tf
file to the latest version from cloudposse/terraform-null-label
why
To support all the features of the context
interface.
v0.24.0
Add additional parameters for authenticated ingress rules @sodre (#54)
what
- Accept
on_unauthenticated_request
parameter - Accept
authentication_request_extra_params
why
- REST APIs usually work better with a "deny" rule instead of the default "authenticate" rule of
on_unauthenticated_request
. - REST APIs may require additional parameters to be passed in the URI.