| [Sandbox_{{ name }}] |
| type = "SandboxDecoder" |
| filename = "{{ values.file_name }}" |
| |
| {% if values.module_directory is defined %} |
| module_directory = "{{ values.module_directory }}" |
| {%- endif %} |
| |
| {% if values.memory_limit is defined %} |
| memory_limit = "{{ values.memory_limit }}" |
| {%- endif %} |
| |
| {% if values.preserve_data is defined %} |
| preserve_data = "{{ values.preserve_data }}" |
| {%- endif %} |
| |
| {% if values.instruction_limit is defined %} |
| instruction_limit = "{{ values.instruction_limit }}" |
| {%- endif %} |
| |
| {% if values.output_limit is defined %} |
| output_limit = "{{ values.output_limit }}" |
| {%- endif %} |
| |
| {% if values.config is defined %} |
| config = [ |
| {% for k,v in values.config.iteritems() %} |
| {{ k }} = {{ v }} ] |
| {%- endfor %} |
| {%- endif %} |