File tree 3 files changed +9
-1
lines changed
anthos-attached-clusters/modules/attached-install-manifest
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ module "attached_install_manifest" {
20
20
| attached\_ cluster\_ fleet\_ project | GCP fleet project ID where the cluster will be attached | ` string ` | n/a | yes |
21
21
| attached\_ cluster\_ name | Name for the attached cluster resource | ` string ` | n/a | yes |
22
22
| gcp\_ location | GCP location to create the attached resource in | ` string ` | ` "us-west1" ` | no |
23
+ | helm\_ timeout | (Optional) Time in seconds to wait for Helm operations to complete. | ` number ` | ` null ` | no |
23
24
| platform\_ version | Platform version of the attached cluster resource | ` string ` | n/a | yes |
24
25
| temp\_ dir | Directory name to temporarily write out the helm chart for bootstrapping the attach process | ` string ` | ` "" ` | no |
25
26
Original file line number Diff line number Diff line change @@ -52,4 +52,5 @@ resource "helm_release" "local" {
52
52
name = local. helm_chart_name
53
53
chart = local. helm_chart_dir
54
54
depends_on = [local_file . bootstrap_helm_chart , local_file . bootstrap_manifests ]
55
+ timeout = var. helm_timeout
55
56
}
Original file line number Diff line number Diff line change 1
1
/* *
2
- * Copyright 2024 Google LLC
2
+ * Copyright 2024-2025 Google LLC
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -40,3 +40,9 @@ variable "attached_cluster_name" {
40
40
description = " Name for the attached cluster resource"
41
41
type = string
42
42
}
43
+
44
+ variable "helm_timeout" {
45
+ description = " (Optional) Time in seconds to wait for Helm operations to complete."
46
+ type = number
47
+ default = null
48
+ }
You can’t perform that action at this time.
0 commit comments