Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/management/kubectl-apply/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ locals {
# 2. Identify URL-based manifests
url_manifests = {
for index, manifest in local.enabled_manifests : index => manifest
if try(manifest.source, null) != null && (startswith(manifest.source, "http://") || startswith(manifest.source, "https://"))
if try(startswith(manifest.source, "http://") || startswith(manifest.source, "https://"), false)
}

# 3. Rebuild the map by populating the 'content' field for URLs based manifest
Expand Down
Loading