Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: terraform-aws-modules/terraform-aws-vpc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.10.0
Choose a base ref
...
head repository: terraform-aws-modules/terraform-aws-vpc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.11.0
Choose a head ref
  • 2 commits
  • 2 files changed
  • 3 contributors

Commits on Aug 3, 2024

  1. feat: Add route to 0.0.0.0/0 & ::/0 (when IPv6 is enabled) on all…

    … public route tables (#1100)
    
    * Fix logic for adding default route on public route tables
    
    * Apply suggestions from code review
    
    ---------
    
    Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
    abohne and bryantbiggs authored Aug 3, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b3e7803 View commit details
  2. chore(release): version 5.11.0 [skip ci]

    ## [5.11.0](v5.10.0...v5.11.0) (2024-08-03)
    
    ### Features
    
    * Add route to `0.0.0.0/0` & `::/0` (when IPv6 is enabled) on all public route tables ([#1100](#1100)) ([b3e7803](b3e7803))
    semantic-release-bot committed Aug 3, 2024
    Copy the full SHA
    623b3e4 View commit details
Showing with 11 additions and 4 deletions.
  1. +7 −0 CHANGELOG.md
  2. +4 −4 main.tf
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [5.11.0](https://github.com/terraform-aws-modules/terraform-aws-vpc/compare/v5.10.0...v5.11.0) (2024-08-03)


### Features

* Add route to `0.0.0.0/0` & `::/0` (when IPv6 is enabled) on all public route tables ([#1100](https://github.com/terraform-aws-modules/terraform-aws-vpc/issues/1100)) ([b3e7803](https://github.com/terraform-aws-modules/terraform-aws-vpc/commit/b3e78033bbee8346341a523f78f762ade41eb93b))

## [5.10.0](https://github.com/terraform-aws-modules/terraform-aws-vpc/compare/v5.9.0...v5.10.0) (2024-08-02)


8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
@@ -153,9 +153,9 @@ resource "aws_route_table_association" "public" {
}

resource "aws_route" "public_internet_gateway" {
count = local.create_public_subnets && var.create_igw ? 1 : 0
count = local.create_public_subnets && var.create_igw ? local.num_public_route_tables : 0

route_table_id = aws_route_table.public[0].id
route_table_id = aws_route_table.public[count.index].id
destination_cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.this[0].id

@@ -165,9 +165,9 @@ resource "aws_route" "public_internet_gateway" {
}

resource "aws_route" "public_internet_gateway_ipv6" {
count = local.create_public_subnets && var.create_igw && var.enable_ipv6 ? 1 : 0
count = local.create_public_subnets && var.create_igw && var.enable_ipv6 ? local.num_public_route_tables : 0

route_table_id = aws_route_table.public[0].id
route_table_id = aws_route_table.public[count.index].id
destination_ipv6_cidr_block = "::/0"
gateway_id = aws_internet_gateway.this[0].id
}