Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump appvia/network/aws from 0.1.6 to 0.2.1 #4

Merged
merged 2 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,11 @@ The `terraform-docs` utility is used to generate this README. Follow the below s

| Name | Source | Version |
|------|--------|---------|
| <a name="module_egress_vpc"></a> [egress\_vpc](#module\_egress\_vpc) | appvia/network/aws | 0.1.6 |
| <a name="module_egress_vpc"></a> [egress\_vpc](#module\_egress\_vpc) | appvia/network/aws | 0.2.1 |
| <a name="module_endpoints"></a> [endpoints](#module\_endpoints) | appvia/private-endpoints/aws | 0.1.4 |
| <a name="module_endpoints_vpc"></a> [endpoints\_vpc](#module\_endpoints\_vpc) | appvia/network/aws | 0.1.6 |
| <a name="module_ingress_vpc"></a> [ingress\_vpc](#module\_ingress\_vpc) | appvia/network/aws | 0.1.6 |
| <a name="module_inspection_vpc"></a> [inspection\_vpc](#module\_inspection\_vpc) | appvia/network/aws | 0.1.6 |
| <a name="module_endpoints_vpc"></a> [endpoints\_vpc](#module\_endpoints\_vpc) | appvia/network/aws | 0.2.1 |
| <a name="module_ingress_vpc"></a> [ingress\_vpc](#module\_ingress\_vpc) | appvia/network/aws | 0.2.1 |
| <a name="module_inspection_vpc"></a> [inspection\_vpc](#module\_inspection\_vpc) | appvia/network/aws | 0.2.1 |
| <a name="module_share_prefixes"></a> [share\_prefixes](#module\_share\_prefixes) | ./modules/prefix_share | n/a |
| <a name="module_tgw"></a> [tgw](#module\_tgw) | terraform-aws-modules/transit-gateway/aws | 2.12.2 |

Expand Down
2 changes: 1 addition & 1 deletion endpoints.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module "endpoints_vpc" {
count = local.enable_endpoints ? 1 : 0
source = "appvia/network/aws"
version = "0.1.6"
version = "0.2.1"

availability_zones = var.connectivity_config.endpoints.network.availability_zones
enable_transit_gateway = true
Expand Down
2 changes: 1 addition & 1 deletion inspection.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module "inspection_vpc" {
count = local.enable_inspection ? 1 : 0
source = "appvia/network/aws"
version = "0.1.6"
version = "0.2.1"

availability_zones = var.connectivity_config.inspection.network.availability_zones
enable_default_route_table_association = false
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "tgw" {
module "egress_vpc" {
count = local.enable_egress ? 1 : 0
source = "appvia/network/aws"
version = "0.1.6"
version = "0.2.1"

availability_zones = var.connectivity_config.egress.network.availability_zones
enable_ipam = var.connectivity_config.egress.network.ipam_pool_id != null
Expand All @@ -49,7 +49,7 @@ module "egress_vpc" {
module "ingress_vpc" {
count = local.enable_ingress ? 1 : 0
source = "appvia/network/aws"
version = "0.1.6"
version = "0.2.1"

availability_zones = var.connectivity_config.ingress.network.availability_zones
enable_ipam = var.connectivity_config.ingress.network.ipam_pool_id != null
Expand Down