Skip to content

Commit

Permalink
chore(deps): bump appvia/network/aws from 0.1.6 to 0.2.1 (#4)
Browse files Browse the repository at this point in the history
* chore(deps): bump appvia/network/aws from 0.1.6 to 0.2.1

Bumps [appvia/network/aws](https://github.com/appvia/terraform-aws-network) from 0.1.6 to 0.2.1.
- [Release notes](https://github.com/appvia/terraform-aws-network/releases)
- [Commits](appvia/terraform-aws-network@v0.1.6...v0.2.1)

---
updated-dependencies:
- dependency-name: appvia/network/aws
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* docs: updating the documentation

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rohith Jayawardene <[email protected]>
  • Loading branch information
dependabot[bot] and gambol99 authored Apr 18, 2024
1 parent 1ccedd2 commit 63e7e16
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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

0 comments on commit 63e7e16

Please sign in to comment.