We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48005bd commit 1341908Copy full SHA for 1341908
modules/acm/creds.tf
@@ -30,12 +30,12 @@ resource "tls_private_key" "k8sop_creds" {
30
rsa_bits = 4096
31
}
32
33
-# Wait for the ACM operator to create the namespace
+# Wait for ACM
34
resource "time_sleep" "wait_acm" {
35
count = (var.create_ssh_key == true || var.ssh_auth_key != null || var.enable_policy_controller || var.enable_config_sync) ? 1 : 0
36
depends_on = [google_gke_hub_feature_membership.main]
37
38
- create_duration = "300s"
+ create_duration = (var.enable_policy_controller || var.enable_config_sync) ? "600s" : "300s"
39
40
41
resource "google_service_account_iam_binding" "ksa_iam" {
0 commit comments