diff options
author | John Estabrook <jestabro@vyos.io> | 2021-11-23 14:10:51 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2021-11-24 08:03:49 -0600 |
commit | ee53af35eb1edb6167a65b290f25a95b2a586498 (patch) | |
tree | 16e05b04e7a8eabd9b6d1cbe8eae6ba157761762 /src/services/api/graphql/recipes/templates | |
parent | ef7f5ca2fd2c0113875dbd9143342e925cf00621 (diff) | |
download | vyos-1x-ee53af35eb1edb6167a65b290f25a95b2a586498.tar.gz vyos-1x-ee53af35eb1edb6167a65b290f25a95b2a586498.zip |
graphql: T3993: add requests for manipulating firewall groups
Diffstat (limited to 'src/services/api/graphql/recipes/templates')
3 files changed, 10 insertions, 0 deletions
diff --git a/src/services/api/graphql/recipes/templates/create_firewall_address_group.tmpl b/src/services/api/graphql/recipes/templates/create_firewall_address_group.tmpl new file mode 100644 index 000000000..a890d0086 --- /dev/null +++ b/src/services/api/graphql/recipes/templates/create_firewall_address_group.tmpl @@ -0,0 +1,4 @@ +set firewall group address-group {{ name }} +{% for add in address %} +set firewall group address-group {{ name }} address {{ add }} +{% endfor %} diff --git a/src/services/api/graphql/recipes/templates/remove_firewall_address_group_members.tmpl b/src/services/api/graphql/recipes/templates/remove_firewall_address_group_members.tmpl new file mode 100644 index 000000000..458f3e5fc --- /dev/null +++ b/src/services/api/graphql/recipes/templates/remove_firewall_address_group_members.tmpl @@ -0,0 +1,3 @@ +{% for add in address %} +delete firewall group address-group {{ name }} address {{ add }} +{% endfor %} diff --git a/src/services/api/graphql/recipes/templates/update_firewall_address_group_members.tmpl b/src/services/api/graphql/recipes/templates/update_firewall_address_group_members.tmpl new file mode 100644 index 000000000..f56c61231 --- /dev/null +++ b/src/services/api/graphql/recipes/templates/update_firewall_address_group_members.tmpl @@ -0,0 +1,3 @@ +{% for add in address %} +set firewall group address-group {{ name }} address {{ add }} +{% endfor %} |