Claude 1
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<Request>
|
||||
<Login>
|
||||
<Username>{{ sophos_api_username }}</Username>
|
||||
<Password>{{ sophos_api_password }}</Password>
|
||||
</Login>
|
||||
<Set operation="add">
|
||||
<WebException>
|
||||
<Name>{{ item.name }}</Name>
|
||||
<VirtualHost>{{ item.virtual_host }}</VirtualHost>
|
||||
<Path>{{ item.path }}</Path>
|
||||
<SkipRules>
|
||||
{% for rule in item.skip_rules %}
|
||||
<Rule>{{ rule }}</Rule>
|
||||
{% endfor %}
|
||||
</SkipRules>
|
||||
<SourceNetworks>
|
||||
{% for network in item.source_networks %}
|
||||
<Network>{{ network }}</Network>
|
||||
{% endfor %}
|
||||
</SourceNetworks>
|
||||
<Comment>{{ item.comment | default('') }}</Comment>
|
||||
</WebException>
|
||||
</Set>
|
||||
</Request>
|
||||
Reference in New Issue
Block a user