From b246aa5e2cb4d0b77578b432e537b16d392d7421 Mon Sep 17 00:00:00 2001 From: Evan Rappe <8562802+evanrappe@users.noreply.github.com> Date: Tue, 19 Mar 2024 09:56:28 -0500 Subject: [PATCH] Allows upgrading the google provider to 5.x (#24) --- README.md | 2 +- main.tf | 2 +- versions.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac20544..50716ed 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ cloudresourcemanager.googleapis.com | Name | Source | Version | |------|--------|---------| -| [lacework\_al\_ps\_svc\_account](#module\_lacework\_al\_ps\_svc\_account) | lacework/service-account/gcp | ~> 1.0 | +| [lacework\_al\_ps\_svc\_account](#module\_lacework\_al\_ps\_svc\_account) | lacework/service-account/gcp | ~> 2.0 | ## Resources diff --git a/main.tf b/main.tf index e6d891c..a096bb1 100644 --- a/main.tf +++ b/main.tf @@ -110,7 +110,7 @@ resource "google_project_service" "required_apis" { module "lacework_al_ps_svc_account" { source = "lacework/service-account/gcp" - version = "~> 1.0" + version = "~> 2.0" create = var.use_existing_service_account ? false : true service_account_name = local.service_account_name project_id = local.project_id diff --git a/versions.tf b/versions.tf index e168a30..08041ef 100644 --- a/versions.tf +++ b/versions.tf @@ -2,7 +2,7 @@ terraform { required_version = ">= 0.15.1" required_providers { - google = ">= 4.4.0, < 5.0.0" + google = ">= 4.4.0" time = "~> 0.6" lacework = { source = "lacework/lacework"