Saltstack Official UFW Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
320B

  1. {%- for app_name, app_config in config.items() %}
  2. {%- set app_title=app_config.get('title', app_name) %}
  3. {%- set app_description=app_config.get('description', "") %}
  4. {%- set app_ports=app_config.get('ports') %}
  5. [{{ app_name }}]
  6. title={{ app_title }}
  7. description={{ app_description }}
  8. ports={{ app_ports }}
  9. {%- endfor %}