Add short warning about UUIDs in the SG rule templates api

SG rule template API accepts any string (any uuid) as remote group id or
remote address group id. It may be something what's not existing in the
time of the creation of template and that's fine. But if it will be not
existing when regular SG will be created for project it will fail making
SG for that project.
This patch adds small warning about this to the default SG rules
template api-ref.

Additionally this patch updated some small issues in the "create
default security group rule" section.

Related-Bug: #1983053
Change-Id: I9bad07d8ed11796047883f87b45a7da0799cdcb1
This commit is contained in:
Slawek Kaplonski 2023-06-26 10:46:10 +02:00 committed by Brian Haley
parent 93a97d3be0
commit c965b1892f
1 changed files with 10 additions and 1 deletions

View File

@ -80,7 +80,7 @@ Create security group default rule
.. rest_method:: POST /v2.0/default-security-group-rules
Creates an OpenStack Networking templale of the security group rule.
Creates an Openstack Networking security group rule template.
Normal response codes: 201
@ -134,6 +134,15 @@ Response Example
.. literalinclude:: samples/security-group-default-rules/security-group-default-rule-create-response.json
:language: javascript
.. warning::
The security group rule template APIs do not validate the UUID of the resources
like ``remote address group id`` or ``remote group ID``. Any string can be
provided here, but please note that it will be used to create real security
group rules for projects, and if the UUID of a non-existing ``security
group`` or ``remote address group`` is used, it will cause errors during
creation of the security groups.
Show security group default rule
================================