File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/management/kubectl-apply Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ locals {
4646 for index , manifest in local . enabled_manifests : tostring (index) => {
4747 content = (
4848 contains (keys (local. url_manifests ), tostring (index)) ? data.http.manifest_from_url[tostring (index)].body :
49- try (manifest. source , " " ) != " " ? (
49+ (manifest. source != null && manifest . source != "") ? (
5050 # Check if it ends in / OR (It's not a file AND can be searched as a directory)
5151 endswith(manifest. source , "/") || (!fileexists(manifest. source ) && can(fileset(manifest. source , "*"))) ? (
5252 join("\n---\n", [
@@ -109,7 +109,7 @@ module "kubectl_apply_manifests" {
109109 namespace = each. value . namespace
110110 atomic = true
111111 wait = each. value . wait_for_rollout
112-
112+ timeout = 1200
113113 values_yaml = [
114114 yamlencode ({
115115 manifests = [
You can’t perform that action at this time.
0 commit comments