Fix metrics exclusion indentation

Use jinja templating white space control to create proper indentation
when metrics-reporter-cloudwatch.excludeMetrics specified

Change-Id: Ia22e362ef143f0c7b4d19e4bfb2fac3e6b3403e2
diff --git a/gerrit/etc/gerrit.config.template b/gerrit/etc/gerrit.config.template
index 6b76753..e8392ac 100644
--- a/gerrit/etc/gerrit.config.template
+++ b/gerrit/etc/gerrit.config.template
@@ -75,11 +75,11 @@
    initialDelay = {{ METRICS_CLOUDWATCH_INITIAL_DELAY }}
    dryRun = {{ METRICS_CLOUDWATCH_DRY_RUN }}
 
-{% if METRICS_CLOUDWATCH_EXCLUDE_METRICS_LIST is defined and METRICS_CLOUDWATCH_EXCLUDE_METRICS_LIST|length %}
- {% set excludedMetricsList = METRICS_CLOUDWATCH_EXCLUDE_METRICS_LIST.split(',') %}
- {% for excluded in excludedMetricsList %}
+{%- if METRICS_CLOUDWATCH_EXCLUDE_METRICS_LIST is defined and METRICS_CLOUDWATCH_EXCLUDE_METRICS_LIST|length %}
+ {%- set excludedMetricsList = METRICS_CLOUDWATCH_EXCLUDE_METRICS_LIST.split(',') %}
+ {%- for excluded in excludedMetricsList %}
    excludeMetrics = {{ excluded }}
- {% endfor %}
+ {%- endfor %}
 {% endif %}
 {% endif %}