You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
274 B
5 lines
274 B
{% set mapping_rules = {} %}
|
|
{% for key, value in threescale_cicd_api_operations.items() %}
|
|
{% do mapping_rules.update({ key: { "http_method": value.verb.upper(), "pattern": threescale_cicd_api_basepath ~ value.path ~ "$", "delta": 1 } }) %}
|
|
{% endfor %}
|
|
{{ mapping_rules }}
|