EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 8d3439c5 authored by Fabian Schindler's avatar Fabian Schindler
Browse files

Adding missing config path for http sources

parent 97c8443b
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ sources:
project_domain_id: {{ template "vs-registrar.envVarQuote" $val.project_domain_id }}
{{- if $val.container }}
container: {{ template "vs-registrar.envVarQuote" $val.container }}
{{- end }}
{{- end }}
{{- else if eq $type "s3" }}
bucket_name: {{ $val.bucket | default "null" }}
......@@ -29,6 +30,9 @@ sources:
secret_access_key: {{ $val.secret_access_key }}
validate_bucket_name: {{ if hasKey $val "validate_bucket_name" }}{{ $val.validate_bucket_name }}{{ else }}true{{ end }}
{{- end }}
{{- else if eq $type "http" }}
endpoint_url: {{ $val.endpoint_url | default "null" }}
{{- end }}
{{- end }}
backends:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment