From 3d840c04ad339793fd1899d8a129af594ba0a48c Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 31 Jan 2024 13:55:16 -0800 Subject: [PATCH] fix(CI): extend wait time for ACM (#1861) --- 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 75c332e74..53f06aa91 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" {