From 67b4c5de67df6fb3dee95020edef03f0e32d9362 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 31 Jan 2024 10:51:46 -0800 Subject: [PATCH] fix: extend wait time for ACM --- modules/acm/creds.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/acm/creds.tf b/modules/acm/creds.tf index 75c332e74e..53f06aa916 100644 --- a/modules/acm/creds.tf +++ b/modules/acm/creds.tf @@ -1,5 +1,5 @@ /** - * Copyright 2018 Google LLC + * Copyright 2018-2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -35,7 +35,7 @@ resource "time_sleep" "wait_acm" { count = (var.create_ssh_key == true || var.ssh_auth_key != null || var.enable_policy_controller || var.enable_config_sync) ? 1 : 0 depends_on = [google_gke_hub_feature_membership.main] - create_duration = (length(var.policy_bundles) > 0) ? "600s" : "300s" + create_duration = "600s" } resource "google_service_account_iam_binding" "ksa_iam" {