Skip to content

Commit

Permalink
chore: upgraded versions.tf to include minor bumps from tpg v5 (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-awmalik authored Oct 20, 2023
1 parent 22b8ef4 commit 72bb554
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
11 changes: 2 additions & 9 deletions modules/vpn_ha/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,10 @@ resource "google_compute_external_vpn_gateway" "external_gateway" {
}
}

data "google_compute_router" "router" {
name = var.router_name == null ? "" : var.router_name
network = var.network
project = var.project_id
region = var.region
}

resource "google_compute_router" "router" {
provider = google-beta
count = data.google_compute_router.router.name == null ? 1 : 0
name = var.router_name != "" ? var.router_name : "vpn-${var.name}"
count = var.router_name == "" ? 1 : 0
name = "vpn-${var.name}"
project = var.project_id
region = var.region
network = var.network
Expand Down
4 changes: 2 additions & 2 deletions modules/vpn_ha/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.74, < 5.0"
version = ">= 4.74, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.74, < 5.0"
version = ">= 4.74, < 6"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.30.0, < 5.0"
version = ">= 3.30.0, < 6"
}
random = {
source = "hashicorp/random"
Expand Down

0 comments on commit 72bb554

Please sign in to comment.