Use https as boolean instead of ssl

Change-Id: Iedbdcda5064636c1b739db23a817666d2959a72b
diff --git a/devops_portal/map.jinja b/devops_portal/map.jinja
index aff3f3a..65bec2c 100644
--- a/devops_portal/map.jinja
+++ b/devops_portal/map.jinja
@@ -4,7 +4,7 @@
 }, merge=True) %}
 
 {% macro service_url(endpoint) -%}
-{%- if endpoint.get('ssl', {}).enabled|default(False) -%}https://{%- else -%}http://{%- endif -%}
+{%- if endpoint.get('https', False) -%}https://{%- else -%}http://{%- endif -%}
 {{ endpoint.address }}:{{ endpoint.port }}/
 {%- endmacro %}