Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

refactor(modules/vpc)!: VPC module refactor #227

Merged
merged 36 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
78f152b
Initial WIP refactor
horiagunica Nov 6, 2023
f85533c
Updated README documentation
horiagunica Nov 7, 2023
5b63ce0
Working module - import broken
horiagunica Nov 7, 2023
2a42e6f
Fixed import of data
horiagunica Nov 7, 2023
49d8057
Fixed outputs
horiagunica Nov 9, 2023
d77e2ac
Refactored Panorama example
horiagunica Nov 9, 2023
de57d8b
Refactored standalone vmseries example
horiagunica Nov 9, 2023
5799778
Added network output for VPC module + refactored vmseries_ha example
horiagunica Nov 13, 2023
4bf0a53
Refactored vpc_peering_common example
horiagunica Nov 13, 2023
98ccf95
Refactored vpc_peering_common_with_network_tags example
horiagunica Nov 13, 2023
087a48f
Refactored vpc_peering_dedicated_example
horiagunica Nov 13, 2023
798aedf
Replaced MTU and FW priority values will null in try statements
horiagunica Nov 20, 2023
3294f38
Removed subnet key renaming inside the module
horiagunica Nov 20, 2023
7d78d6e
Reordered outputs
horiagunica Nov 20, 2023
c877cb9
Added documentation for variables
horiagunica Nov 20, 2023
69fa824
Moved lifecycle conditions to firewall_rules validation block, added …
horiagunica Nov 20, 2023
c3b03db
Bumped minimum TF version for variable structure compatibility
horiagunica Nov 20, 2023
b0e6a46
Fixed VPC subnetwork output
horiagunica Nov 20, 2023
a9649b8
Added new multi-trust-interface example
horiagunica Nov 20, 2023
c12579e
Renamed example + run test
horiagunica Nov 20, 2023
e76bc72
Renamed new example and updated README.md
horiagunica Nov 21, 2023
8f435d8
Update README.md with diagram for new example
horiagunica Nov 21, 2023
4fef9f2
Added variables types and defaults where missing
horiagunica Nov 21, 2023
5299e98
Update modules/vpc/variables.tf
horiagunica Nov 21, 2023
ffecbd2
Update modules/vpc/variables.tf
horiagunica Nov 21, 2023
57917a9
Update modules/vpc/variables.tf
horiagunica Nov 21, 2023
2d64c46
Update modules/vpc/variables.tf
horiagunica Nov 21, 2023
bf39c9c
Update modules/vpc/variables.tf
horiagunica Nov 21, 2023
f785bb6
Update modules/vpc/variables.tf
horiagunica Nov 21, 2023
36218ef
Update modules/vpc/outputs.tf
horiagunica Nov 21, 2023
ec048e6
Re-arranged VPC module variables order
horiagunica Nov 21, 2023
5f3189e
Update README.md
migara Nov 21, 2023
2a467ba
Update README.md
migara Nov 21, 2023
5dba758
Modified VPC module variable validation message description
horiagunica Nov 22, 2023
b66cfba
Removed redundant try statements from VPC module
horiagunica Nov 22, 2023
f029b5c
Renamed subnet_name each value to name
horiagunica Nov 22, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/pr_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
secrets: inherit
with:
cloud: gcp
tf_version: 1.2 1.3 1.4 1.5
tf_version: 1.3 1.4 1.5
validate_max_parallel: 20
test_max_parallel: 10
fail_fast: false
Expand Down
2 changes: 1 addition & 1 deletion examples/autoscale/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ hping3 -1 -i u10000 <target IP>

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.2, < 2.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3, < 2.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | ~> 4.58 |

### Providers
Expand Down
2 changes: 1 addition & 1 deletion examples/autoscale/versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.2, < 2.0"
required_version = ">= 1.3, < 2.0"
required_providers {
google = { version = "~> 4.58" }
}
Expand Down
232 changes: 232 additions & 0 deletions examples/multi_nic_common/README.md

Large diffs are not rendered by default.

Loading