Skip to content

Commit

Permalink
fix(CI): extend wait time for ACM (#1861)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody committed Jan 31, 2024
1 parent e58c094 commit 3d840c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/acm/creds.tf
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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" {
Expand Down

0 comments on commit 3d840c0

Please sign in to comment.