Skip to content

Commit aaf6bc6

Browse files
authored
fix(TPG >= 4.53)!: set bgp keepalive_interval to default 20 (#169)
1 parent 9b2fa28 commit aaf6bc6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

network.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ resource "google_compute_router" "vault-router" {
5252
network = local.network
5353

5454
bgp {
55-
asn = 64514
55+
asn = 64514
56+
keepalive_interval = 20
5657
}
5758

5859
depends_on = [google_project_service.service]

versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020

2121
google = {
2222
source = "hashicorp/google"
23-
version = ">= 3.53, < 5.0"
23+
version = ">= 4.53, < 5.0"
2424
}
2525
}
2626

0 commit comments

Comments
 (0)