Page MenuHomePhabricator

openstack: cleanup and prepare security groups
Closed, ResolvedPublic

Description

The introduction of a new subnet with a new CIDR requires to update all security groups.

This ticket is to track this work.

Event Timeline

Restricted Application removed a subscriber: taavi. · View Herald TranscriptSep 25 2024, 9:59 AM
aborrero changed the task status from Open to In Progress.Sep 25 2024, 9:59 AM
aborrero triaged this task as Medium priority.
aborrero moved this task from Backlog to Doing on the User-aborrero board.

I'm using this script to cleanup security groups that belongs to projects that no longer exist:

#!/bin/bash

set -e

IFS=$'\n'
for sg_project in $(wmcs-openstack security group list -f value -c ID -c Project) ; do
        sg=$(awk -F' ' '{print $1}' <<< $sg_project)
        project=$(awk -F' ' '{print $2}' <<< $sg_project)
        echo sg: ${sg} project: ${project}

        if [ "$(wmcs-openstack project show ${project} 2>/dev/null)" == "" ] ; then
                echo "delete sg ${sg} because project ${project} doesn't exists"
                wmcs-openstack security group show ${sg}
                echo wmcs-openstack security group delete ${sg}
        fi
done

saved output here:

1sg: 0186809f-9b14-4b2c-a3c6-2222eda1042a project: ldaptestproject7
2delete sg 0186809f-9b14-4b2c-a3c6-2222eda1042a because project ldaptestproject7 doesn't exists
3+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4| Field | Value |
5+-----------------+-------------------------------------------------------------------------------------------------------------------------+
6| created_at | 2020-04-06T23:54:54Z |
7| description | Default security group |
8| id | 0186809f-9b14-4b2c-a3c6-2222eda1042a |
9| name | default |
10| project_id | ldaptestproject7 |
11| revision_number | 7 |
12| rules | belongs_to_default_sg='True', created_at='2021-05-17T19:40:26Z', direction='ingress', ethertype='IPv4', |
13| | id='248fb28d-8f60-4b19-84e0-215bad95198b', protocol='udp', remote_group_id='0186809f-9b14-4b2c-a3c6-2222eda1042a', |
14| | standard_attr_id='6797', updated_at='2021-05-17T19:40:26Z' |
15| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:54Z', direction='ingress', ethertype='IPv4', |
16| | id='24bf25ec-79c0-4098-a50f-82459417964c', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
17| | standard_attr_id='1294', updated_at='2020-04-06T23:54:54Z' |
18| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:55Z', direction='ingress', ethertype='IPv4', |
19| | id='2fe01757-68ac-4a50-a6e4-2e2a9b5cdb78', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
20| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1295', updated_at='2020-04-06T23:54:55Z' |
21| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:54Z', direction='egress', ethertype='IPv4', |
22| | id='3a69812e-b807-4a7d-9264-3593963e3325', standard_attr_id='1291', updated_at='2020-04-06T23:54:54Z' |
23| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:54Z', direction='egress', ethertype='IPv6', |
24| | id='9e7309d6-4cdf-4163-b5f7-180cfbcb7198', standard_attr_id='1293', updated_at='2020-04-06T23:54:54Z' |
25| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:54Z', direction='ingress', ethertype='IPv6', |
26| | id='abf29c92-3332-4758-aad0-82d1f99297b4', remote_group_id='0186809f-9b14-4b2c-a3c6-2222eda1042a', |
27| | standard_attr_id='1292', updated_at='2020-04-06T23:54:54Z' |
28| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:54Z', direction='ingress', ethertype='IPv4', |
29| | id='caa3c5bb-f18e-4cfb-b789-e2c81d88df2d', remote_group_id='0186809f-9b14-4b2c-a3c6-2222eda1042a', |
30| | standard_attr_id='1290', updated_at='2020-04-06T23:54:54Z' |
31| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:55Z', direction='ingress', ethertype='IPv4', |
32| | id='cef15fce-d037-499e-8968-253d638ac809', port_range_max='22', port_range_min='22', protocol='tcp', |
33| | remote_group_id='0186809f-9b14-4b2c-a3c6-2222eda1042a', standard_attr_id='1296', updated_at='2020-04-06T23:54:55Z' |
34| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:56Z', direction='ingress', ethertype='IPv4', |
35| | id='cfe0833d-b9be-41cb-bc53-2b88b70a91bd', protocol='icmp', remote_group_id='0186809f-9b14-4b2c-a3c6-2222eda1042a', |
36| | standard_attr_id='1298', updated_at='2020-04-06T23:54:56Z' |
37| | belongs_to_default_sg='True', created_at='2020-04-06T23:54:56Z', direction='ingress', ethertype='IPv4', |
38| | id='ff7688a0-1ecd-4121-8807-c948b73c657b', port_range_max='65535', port_range_min='1', protocol='udp', |
39| | remote_group_id='0186809f-9b14-4b2c-a3c6-2222eda1042a', standard_attr_id='1297', updated_at='2020-04-06T23:54:56Z' |
40| shared | False |
41| stateful | True |
42| tags | [] |
43| updated_at | 2021-05-17T19:40:26Z |
44+-----------------+-------------------------------------------------------------------------------------------------------------------------+
45wmcs-openstack security group delete 0186809f-9b14-4b2c-a3c6-2222eda1042a
46sg: 02af4a88-33b8-4375-8ed1-19b178ed42c1 project: 97389a62315e4482ab6fe089c6b0e340
47delete sg 02af4a88-33b8-4375-8ed1-19b178ed42c1 because project 97389a62315e4482ab6fe089c6b0e340 doesn't exists
48+-----------------+-------------------------------------------------------------------------------------------------------------------------+
49| Field | Value |
50+-----------------+-------------------------------------------------------------------------------------------------------------------------+
51| created_at | 2024-09-25T09:51:47Z |
52| description | Default security group |
53| id | 02af4a88-33b8-4375-8ed1-19b178ed42c1 |
54| name | default |
55| project_id | 97389a62315e4482ab6fe089c6b0e340 |
56| revision_number | 7 |
57| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
58| | id='23e5adb0-1475-4487-be01-a8c22b36fa63', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
59| | standard_attr_id='4950778', updated_at='2024-09-25T09:51:48Z' |
60| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
61| | id='2df6ac76-6aeb-4ad3-9f62-e2bc02878696', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
62| | standard_attr_id='4950733', updated_at='2024-09-25T09:51:47Z' |
63| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
64| | id='57058318-4f29-483f-963d-2f2f63640fec', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
65| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950829', updated_at='2024-09-25T09:51:48Z' |
66| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
67| | id='62064f5d-08bb-4ab2-842a-7b1cb4891854', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
68| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950805', updated_at='2024-09-25T09:51:48Z' |
69| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
70| | id='68d242e5-d9aa-4859-8db5-cbae95f8dcd0', remote_group_id='02af4a88-33b8-4375-8ed1-19b178ed42c1', |
71| | standard_attr_id='4950715', updated_at='2024-09-25T09:51:47Z' |
72| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', id='874be4de- |
73| | afa8-4b7e-b9e9-fd338b6d5e66', protocol='icmp', remote_group_id='02af4a88-33b8-4375-8ed1-19b178ed42c1', |
74| | standard_attr_id='4950895', updated_at='2024-09-25T09:51:49Z' |
75| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
76| | id='98f65fb2-815e-49c1-b7c7-d6c52a65959b', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950727', |
77| | updated_at='2024-09-25T09:51:47Z' |
78| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
79| | id='a0c28e81-540e-469d-bcb6-8793150b2ad1', remote_group_id='02af4a88-33b8-4375-8ed1-19b178ed42c1', |
80| | standard_attr_id='4950721', updated_at='2024-09-25T09:51:47Z' |
81| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
82| | id='a7d20bbc-43cc-4c88-8eb9-e72c401a1e11', port_range_max='22', port_range_min='22', protocol='tcp', |
83| | remote_group_id='02af4a88-33b8-4375-8ed1-19b178ed42c1', standard_attr_id='4950847', updated_at='2024-09-25T09:51:48Z' |
84| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
85| | id='e1e85d3b-d87d-489a-a9c2-f298a28c2bf1', protocol='udp', remote_group_id='02af4a88-33b8-4375-8ed1-19b178ed42c1', |
86| | standard_attr_id='4950871', updated_at='2024-09-25T09:51:49Z' |
87| shared | False |
88| stateful | True |
89| tags | [] |
90| updated_at | 2024-09-25T09:51:49Z |
91+-----------------+-------------------------------------------------------------------------------------------------------------------------+
92wmcs-openstack security group delete 02af4a88-33b8-4375-8ed1-19b178ed42c1
93sg: 038f32a5-d02d-4c4a-84d1-670b4f75c3eb project: rooktest
94delete sg 038f32a5-d02d-4c4a-84d1-670b4f75c3eb because project rooktest doesn't exists
95+-----------------+-------------------------------------------------------------------------------------------------------------------------+
96| Field | Value |
97+-----------------+-------------------------------------------------------------------------------------------------------------------------+
98| created_at | 2022-03-31T18:38:14Z |
99| description | Default security group |
100| id | 038f32a5-d02d-4c4a-84d1-670b4f75c3eb |
101| name | default |
102| project_id | rooktest |
103| revision_number | 6 |
104| rules | belongs_to_default_sg='True', created_at='2022-03-31T18:38:14Z', direction='egress', ethertype='IPv4', |
105| | id='0b235241-984c-4c3b-b797-89436891e967', standard_attr_id='4687459', updated_at='2022-03-31T18:38:14Z' |
106| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:14Z', direction='egress', ethertype='IPv6', |
107| | id='1118d277-2be2-410d-86cc-cc7f8132c31c', standard_attr_id='4687465', updated_at='2022-03-31T18:38:14Z' |
108| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:16Z', direction='ingress', ethertype='IPv4', |
109| | id='5728bf0f-e44d-4aac-8de9-28f13b43be7d', protocol='icmp', remote_group_id='038f32a5-d02d-4c4a-84d1-670b4f75c3eb', |
110| | standard_attr_id='4687480', updated_at='2022-03-31T18:38:16Z' |
111| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:15Z', direction='ingress', ethertype='IPv4', |
112| | id='901ccd2e-eb04-4924-8c4e-57a88f83653d', protocol='udp', remote_group_id='038f32a5-d02d-4c4a-84d1-670b4f75c3eb', |
113| | standard_attr_id='4687477', updated_at='2022-03-31T18:38:15Z' |
114| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:15Z', direction='ingress', ethertype='IPv4', |
115| | id='9179774f-082c-4b43-80bf-45db3eb34f47', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
116| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4687471', updated_at='2022-03-31T18:38:15Z' |
117| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:15Z', direction='ingress', ethertype='IPv4', |
118| | id='9b994449-0ed7-4d40-a7b2-7b9508ebc00e', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
119| | standard_attr_id='4687468', updated_at='2022-03-31T18:38:15Z' |
120| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:15Z', direction='ingress', ethertype='IPv4', id='9f833bcb- |
121| | cd3f-4c7c-a148-5de1a209a199', port_range_max='22', port_range_min='22', protocol='tcp', |
122| | remote_group_id='038f32a5-d02d-4c4a-84d1-670b4f75c3eb', standard_attr_id='4687474', updated_at='2022-03-31T18:38:15Z' |
123| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:14Z', direction='ingress', ethertype='IPv4', |
124| | id='d842ade3-9364-4331-bdeb-47bfa786291d', remote_group_id='038f32a5-d02d-4c4a-84d1-670b4f75c3eb', |
125| | standard_attr_id='4687456', updated_at='2022-03-31T18:38:14Z' |
126| | belongs_to_default_sg='True', created_at='2022-03-31T18:38:14Z', direction='ingress', ethertype='IPv6', |
127| | id='e437e4f5-d952-4974-b774-4eb445d8aa8c', remote_group_id='038f32a5-d02d-4c4a-84d1-670b4f75c3eb', |
128| | standard_attr_id='4687462', updated_at='2022-03-31T18:38:14Z' |
129| shared | False |
130| stateful | True |
131| tags | [] |
132| updated_at | 2022-03-31T18:38:16Z |
133+-----------------+-------------------------------------------------------------------------------------------------------------------------+
134wmcs-openstack security group delete 038f32a5-d02d-4c4a-84d1-670b4f75c3eb
135sg: 061b4036-d045-4357-8bd9-ad072fc58347 project: 6593eb1e31154080978e5c06fbc6614f
136delete sg 061b4036-d045-4357-8bd9-ad072fc58347 because project 6593eb1e31154080978e5c06fbc6614f doesn't exists
137+-----------------+-------------------------------------------------------------------------------------------------------------------------+
138| Field | Value |
139+-----------------+-------------------------------------------------------------------------------------------------------------------------+
140| created_at | 2024-09-08T00:00:20Z |
141| description | Default security group |
142| id | 061b4036-d045-4357-8bd9-ad072fc58347 |
143| name | default |
144| project_id | 6593eb1e31154080978e5c06fbc6614f |
145| revision_number | 6 |
146| rules | belongs_to_default_sg='True', created_at='2024-09-08T00:00:21Z', direction='ingress', ethertype='IPv4', |
147| | id='007d84df-3bd8-47c9-9d05-7408f1b7fce3', port_range_max='22', port_range_min='22', protocol='tcp', |
148| | remote_group_id='061b4036-d045-4357-8bd9-ad072fc58347', standard_attr_id='4941490', updated_at='2024-09-08T00:00:21Z' |
149| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:21Z', direction='ingress', ethertype='IPv4', |
150| | id='0adeaa52-8a9c-4028-a2d4-492f6cbf873e', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
151| | standard_attr_id='4941484', updated_at='2024-09-08T00:00:21Z' |
152| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:20Z', direction='ingress', ethertype='IPv6', |
153| | id='2a6b638d-f70a-4ef4-aaaf-fa84657fb0c3', remote_group_id='061b4036-d045-4357-8bd9-ad072fc58347', |
154| | standard_attr_id='4941478', updated_at='2024-09-08T00:00:20Z' |
155| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:22Z', direction='ingress', ethertype='IPv4', |
156| | id='41d50e5d-6e5b-4c04-8fe8-bf1f65681be7', protocol='icmp', remote_group_id='061b4036-d045-4357-8bd9-ad072fc58347', |
157| | standard_attr_id='4941496', updated_at='2024-09-08T00:00:22Z' |
158| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:20Z', direction='egress', ethertype='IPv6', |
159| | id='7289244d-656a-4827-b142-234cc77e430e', standard_attr_id='4941475', updated_at='2024-09-08T00:00:20Z' |
160| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:20Z', direction='ingress', ethertype='IPv4', |
161| | id='73e5463e-1c24-477d-b93f-ed2183cf044f', remote_group_id='061b4036-d045-4357-8bd9-ad072fc58347', |
162| | standard_attr_id='4941472', updated_at='2024-09-08T00:00:20Z' |
163| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:20Z', direction='egress', ethertype='IPv4', |
164| | id='93c00881-12ab-45cf-b2a6-161d5e20b36b', standard_attr_id='4941481', updated_at='2024-09-08T00:00:20Z' |
165| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:21Z', direction='ingress', ethertype='IPv4', |
166| | id='cf27e791-0823-446e-8c5b-e93b86613cd1', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
167| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4941487', updated_at='2024-09-08T00:00:21Z' |
168| | belongs_to_default_sg='True', created_at='2024-09-08T00:00:21Z', direction='ingress', ethertype='IPv4', |
169| | id='ea32389f-cced-4c92-a99b-6d5df9a5bdce', protocol='udp', remote_group_id='061b4036-d045-4357-8bd9-ad072fc58347', |
170| | standard_attr_id='4941493', updated_at='2024-09-08T00:00:21Z' |
171| shared | False |
172| stateful | True |
173| tags | [] |
174| updated_at | 2024-09-08T00:00:22Z |
175+-----------------+-------------------------------------------------------------------------------------------------------------------------+
176wmcs-openstack security group delete 061b4036-d045-4357-8bd9-ad072fc58347
177sg: 06c18f55-7b92-4dbc-a124-31bc4feecf9c project: 6448278d859347a3a358da829ae60056
178delete sg 06c18f55-7b92-4dbc-a124-31bc4feecf9c because project 6448278d859347a3a358da829ae60056 doesn't exists
179+-----------------+-------------------------------------------------------------------------------------------------------------------------+
180| Field | Value |
181+-----------------+-------------------------------------------------------------------------------------------------------------------------+
182| created_at | 2024-09-02T00:00:20Z |
183| description | Default security group |
184| id | 06c18f55-7b92-4dbc-a124-31bc4feecf9c |
185| name | default |
186| project_id | 6448278d859347a3a358da829ae60056 |
187| revision_number | 6 |
188| rules | belongs_to_default_sg='True', created_at='2024-09-02T00:00:20Z', direction='ingress', ethertype='IPv4', |
189| | id='1ba227d3-22c7-4690-a01a-a0612e789f60', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
190| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4938898', updated_at='2024-09-02T00:00:20Z' |
191| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:20Z', direction='ingress', ethertype='IPv4', |
192| | id='4d133b6e-393f-41a5-a6db-50c459abd113', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
193| | standard_attr_id='4938895', updated_at='2024-09-02T00:00:20Z' |
194| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:20Z', direction='ingress', ethertype='IPv6', |
195| | id='52d7e860-0bad-4132-9166-97e27187ca30', remote_group_id='06c18f55-7b92-4dbc-a124-31bc4feecf9c', |
196| | standard_attr_id='4938889', updated_at='2024-09-02T00:00:20Z' |
197| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:20Z', direction='egress', ethertype='IPv6', |
198| | id='6426863b-5fe2-4c32-93e0-c224ce731a49', standard_attr_id='4938886', updated_at='2024-09-02T00:00:20Z' |
199| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:20Z', direction='egress', ethertype='IPv4', |
200| | id='af65421a-87ac-4690-93fd-e5cf1bcad9ad', standard_attr_id='4938892', updated_at='2024-09-02T00:00:20Z' |
201| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:21Z', direction='ingress', ethertype='IPv4', |
202| | id='c3641267-b38a-4c47-8d45-ba4aec99317d', protocol='icmp', remote_group_id='06c18f55-7b92-4dbc-a124-31bc4feecf9c', |
203| | standard_attr_id='4938907', updated_at='2024-09-02T00:00:21Z' |
204| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:20Z', direction='ingress', ethertype='IPv4', |
205| | id='cbaa0b4c-557e-444f-aecf-9ca9c80ed6cb', remote_group_id='06c18f55-7b92-4dbc-a124-31bc4feecf9c', |
206| | standard_attr_id='4938883', updated_at='2024-09-02T00:00:20Z' |
207| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:21Z', direction='ingress', ethertype='IPv4', |
208| | id='e725c441-eb15-4503-8906-f8535982374f', port_range_max='22', port_range_min='22', protocol='tcp', |
209| | remote_group_id='06c18f55-7b92-4dbc-a124-31bc4feecf9c', standard_attr_id='4938901', updated_at='2024-09-02T00:00:21Z' |
210| | belongs_to_default_sg='True', created_at='2024-09-02T00:00:21Z', direction='ingress', ethertype='IPv4', |
211| | id='fc999b9c-bf14-4474-8fa8-1dd527cf996d', protocol='udp', remote_group_id='06c18f55-7b92-4dbc-a124-31bc4feecf9c', |
212| | standard_attr_id='4938904', updated_at='2024-09-02T00:00:21Z' |
213| shared | False |
214| stateful | True |
215| tags | [] |
216| updated_at | 2024-09-02T00:00:21Z |
217+-----------------+-------------------------------------------------------------------------------------------------------------------------+
218wmcs-openstack security group delete 06c18f55-7b92-4dbc-a124-31bc4feecf9c
219sg: 06f98785-b625-4f48-845d-3e9629a2f600 project: paws-dev
220delete sg 06f98785-b625-4f48-845d-3e9629a2f600 because project paws-dev doesn't exists
221+-----------------+-------------------------------------------------------------------------------------------------------------------------+
222| Field | Value |
223+-----------------+-------------------------------------------------------------------------------------------------------------------------+
224| created_at | 2023-01-06T15:47:03Z |
225| description | |
226| id | 06f98785-b625-4f48-845d-3e9629a2f600 |
227| name | local |
228| project_id | paws-dev |
229| revision_number | 4 |
230| rules | created_at='2023-01-06T15:47:03Z', direction='egress', ethertype='IPv4', id='0dc110e0-a74a-4fbc-8937-80a51b235fe0', |
231| | standard_attr_id='4723955', updated_at='2023-01-06T15:47:03Z' |
232| | created_at='2023-01-06T18:24:02Z', direction='ingress', ethertype='IPv4', id='2cb0188d-dcee-4aba-9aae-809682f0eb20', |
233| | normalized_cidr='0.0.0.0/0', port_range_max='443', port_range_min='443', protocol='tcp', remote_ip_prefix='0.0.0.0/0', |
234| | standard_attr_id='4724144', updated_at='2023-01-06T18:24:02Z' |
235| | created_at='2023-01-06T15:47:03Z', direction='egress', ethertype='IPv6', id='43849615-d436-4f52-9423-1c2f31e046cc', |
236| | standard_attr_id='4723958', updated_at='2023-01-06T15:47:03Z' |
237| | created_at='2023-01-11T15:43:22Z', description='http', direction='ingress', ethertype='IPv4', |
238| | id='830d3b48-4792-42d8-aba1-85fffdb2997f', normalized_cidr='0.0.0.0/0', port_range_max='80', port_range_min='80', |
239| | protocol='tcp', remote_ip_prefix='0.0.0.0/0', standard_attr_id='4726856', updated_at='2023-01-11T15:43:22Z' |
240| | created_at='2023-01-06T15:48:11Z', direction='ingress', ethertype='IPv4', id='9b2007a1-b273-457e-a48c-db83331f0774', |
241| | normalized_cidr='172.16.0.0/12', protocol='tcp', remote_ip_prefix='172.16.0.0/12', standard_attr_id='4723961', |
242| | updated_at='2023-01-06T15:48:11Z' |
243| shared | False |
244| stateful | True |
245| tags | [] |
246| updated_at | 2023-01-11T15:43:22Z |
247+-----------------+-------------------------------------------------------------------------------------------------------------------------+
248wmcs-openstack security group delete 06f98785-b625-4f48-845d-3e9629a2f600
249sg: 07aaa7e6-fb90-47fb-8e44-553620e2e1cc project: trove
250sg: 08c8e4d6-656e-47ab-a6d2-9b9cded4cdfe project: devtest
251delete sg 08c8e4d6-656e-47ab-a6d2-9b9cded4cdfe because project devtest doesn't exists
252+-----------------+-------------------------------------------------------------------------------------------------------------------------+
253| Field | Value |
254+-----------------+-------------------------------------------------------------------------------------------------------------------------+
255| created_at | 2020-01-03T09:53:40Z |
256| description | |
257| id | 08c8e4d6-656e-47ab-a6d2-9b9cded4cdfe |
258| name | external_ssh |
259| project_id | devtest |
260| revision_number | 3 |
261| rules | created_at='2020-01-03T09:53:40Z', direction='egress', ethertype='IPv4', id='84c54bdb-b954-44cd-8d40-03102510faf2', |
262| | standard_attr_id='993', updated_at='2020-01-03T09:53:40Z' |
263| | created_at='2020-01-03T09:53:57Z', direction='ingress', ethertype='IPv4', id='a2861490-1bf8-4995-b3bd-bfefc77a3414', |
264| | normalized_cidr='0.0.0.0/0', port_range_max='22', port_range_min='22', protocol='tcp', remote_ip_prefix='0.0.0.0/0', |
265| | standard_attr_id='995', updated_at='2020-01-03T09:53:57Z' |
266| | created_at='2020-01-03T09:53:40Z', direction='egress', ethertype='IPv6', id='fb3341e1-6bb4-45c9-856b-29ad7ea2a49b', |
267| | standard_attr_id='994', updated_at='2020-01-03T09:53:40Z' |
268| shared | False |
269| stateful | True |
270| tags | [] |
271| updated_at | 2020-01-03T09:53:57Z |
272+-----------------+-------------------------------------------------------------------------------------------------------------------------+
273wmcs-openstack security group delete 08c8e4d6-656e-47ab-a6d2-9b9cded4cdfe
274sg: 08d9d883-9de4-41bb-8e81-246de7b898fa project: newprojectdomaintest2
275delete sg 08d9d883-9de4-41bb-8e81-246de7b898fa because project newprojectdomaintest2 doesn't exists
276+-----------------+-------------------------------------------------------------------------------------------------------------------------+
277| Field | Value |
278+-----------------+-------------------------------------------------------------------------------------------------------------------------+
279| created_at | 2020-03-02T20:19:54Z |
280| description | Default security group |
281| id | 08d9d883-9de4-41bb-8e81-246de7b898fa |
282| name | default |
283| project_id | newprojectdomaintest2 |
284| revision_number | 9 |
285| rules | belongs_to_default_sg='True', created_at='2020-03-02T20:19:55Z', direction='ingress', ethertype='IPv4', id='0edfd4dc- |
286| | ed4c-44cf-b83e-fa4e2ec20df8', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
287| | standard_attr_id='1134', updated_at='2020-03-02T20:19:55Z' |
288| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:54Z', direction='egress', ethertype='IPv4', |
289| | id='14c40564-3ebb-4f52-9291-8cb9486539fe', standard_attr_id='1131', updated_at='2020-03-02T20:19:54Z' |
290| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:54Z', direction='egress', ethertype='IPv6', |
291| | id='743abcd8-4d59-4d68-97c8-d116d410d73f', standard_attr_id='1133', updated_at='2020-03-02T20:19:54Z' |
292| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:56Z', direction='ingress', ethertype='IPv4', |
293| | id='82befe66-e632-4737-ba03-ecfa367b650e', protocol='icmp', remote_group_id='08d9d883-9de4-41bb-8e81-246de7b898fa', |
294| | standard_attr_id='1138', updated_at='2020-03-02T20:19:56Z' |
295| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:55Z', direction='ingress', ethertype='IPv4', |
296| | id='8ac2492d-fb59-4ab5-87da-ef711f27bd8f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
297| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1135', updated_at='2020-03-02T20:19:55Z' |
298| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:56Z', direction='ingress', ethertype='IPv4', |
299| | id='c5afeeeb-03d4-43f5-ba88-78764e5d0882', port_range_max='65535', port_range_min='1', protocol='udp', |
300| | remote_group_id='08d9d883-9de4-41bb-8e81-246de7b898fa', standard_attr_id='1137', updated_at='2020-03-02T20:19:56Z' |
301| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:56Z', direction='ingress', ethertype='IPv4', |
302| | id='e362e894-e198-4c06-a72c-48bbbb4770c2', port_range_max='22', port_range_min='22', protocol='tcp', |
303| | remote_group_id='08d9d883-9de4-41bb-8e81-246de7b898fa', standard_attr_id='1136', updated_at='2020-03-02T20:19:56Z' |
304| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:54Z', direction='ingress', ethertype='IPv6', |
305| | id='e51d64b4-a7a5-4e1a-9476-9a1923b53ac9', remote_group_id='08d9d883-9de4-41bb-8e81-246de7b898fa', |
306| | standard_attr_id='1132', updated_at='2020-03-02T20:19:54Z' |
307| | belongs_to_default_sg='True', created_at='2020-03-02T20:19:54Z', direction='ingress', ethertype='IPv4', |
308| | id='faa2ca21-edb1-40ee-b477-feb72b330c88', remote_group_id='08d9d883-9de4-41bb-8e81-246de7b898fa', |
309| | standard_attr_id='1130', updated_at='2020-03-02T20:19:54Z' |
310| shared | False |
311| stateful | True |
312| tags | [] |
313| updated_at | 2020-03-02T20:19:56Z |
314+-----------------+-------------------------------------------------------------------------------------------------------------------------+
315wmcs-openstack security group delete 08d9d883-9de4-41bb-8e81-246de7b898fa
316sg: 091ac06d-8fc7-4ac9-b001-bc7c0cc78191 project: paws-dev
317delete sg 091ac06d-8fc7-4ac9-b001-bc7c0cc78191 because project paws-dev doesn't exists
318+-----------------+-------------------------------------------------------------------------------------------------------------------------+
319| Field | Value |
320+-----------------+-------------------------------------------------------------------------------------------------------------------------+
321| created_at | 2023-09-05T19:42:42Z |
322| description | |
323| id | 091ac06d-8fc7-4ac9-b001-bc7c0cc78191 |
324| name | paws-dev-pulumi-tszkz3mww33h-secgroup_kube_master-vn3lyjtus7p3 |
325| project_id | paws-dev |
326| revision_number | 15 |
327| rules | created_at='2023-09-05T19:42:43Z', direction='ingress', ethertype='IPv4', id='0601e716-67fd-4bf1-894e-101cff38fd02', |
328| | port_range_max='179', port_range_min='179', protocol='tcp', standard_attr_id='4811194', |
329| | updated_at='2023-09-05T19:42:43Z' |
330| | created_at='2023-09-05T19:42:43Z', direction='ingress', ethertype='IPv4', id='15302d01-3028-4d15-91e2-eb69bdc72d70', |
331| | port_range_max='6443', port_range_min='6443', protocol='tcp', standard_attr_id='4811202', |
332| | updated_at='2023-09-05T19:42:43Z' |
333| | created_at='2023-09-05T19:42:44Z', direction='ingress', ethertype='IPv4', id='1623eddb-eb7f-4b55-ba66-f95bb6522a4f', |
334| | port_range_max='9100', port_range_min='9100', protocol='tcp', standard_attr_id='4811204', |
335| | updated_at='2023-09-05T19:42:44Z' |
336| | created_at='2023-09-05T19:42:42Z', direction='ingress', ethertype='IPv4', id='1ca4ba92-373b-42fd-93ae-99832c8db796', |
337| | port_range_max='53', port_range_min='53', protocol='udp', standard_attr_id='4811193', updated_at='2023-09-05T19:42:42Z' |
338| | created_at='2023-09-05T19:42:42Z', direction='egress', ethertype='IPv4', id='3dd5f1bf-fd8a-4bdf-bb51-029374d9f477', |
339| | standard_attr_id='4811182', updated_at='2023-09-05T19:42:42Z' |
340| | created_at='2023-09-05T19:42:43Z', direction='ingress', ethertype='IPv4', id='5324f3b0-d854-4db5-aca4-3c5d63e0747e', |
341| | port_range_max='8080', port_range_min='8080', protocol='tcp', standard_attr_id='4811198', |
342| | updated_at='2023-09-05T19:42:43Z' |
343| | created_at='2023-09-05T19:42:43Z', direction='ingress', ethertype='IPv4', id='7074deb6-3e35-483c-9e64-1af1cd6f4e33', |
344| | port_range_max='2379', port_range_min='2379', protocol='tcp', standard_attr_id='4811200', |
345| | updated_at='2023-09-05T19:42:43Z' |
346| | created_at='2023-09-05T19:42:42Z', direction='ingress', ethertype='IPv4', id='75567295-0657-4d32-8532-90d6f4f04093', |
347| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4811188', updated_at='2023-09-05T19:42:42Z' |
348| | created_at='2023-09-05T19:42:43Z', direction='ingress', ethertype='IPv4', id='85a74469-7b7e-4ce2-8ec8-56d182667805', |
349| | port_range_max='2380', port_range_min='2380', protocol='tcp', standard_attr_id='4811201', |
350| | updated_at='2023-09-05T19:42:43Z' |
351| | created_at='2023-09-05T19:42:44Z', direction='ingress', ethertype='IPv4', id='8a5d3c3c-a30d-4e5d-ac9d-5fbea296e5c1', |
352| | port_range_max='10250', port_range_min='10250', protocol='tcp', standard_attr_id='4811206', |
353| | updated_at='2023-09-05T19:42:44Z' |
354| | created_at='2023-09-05T19:42:44Z', direction='ingress', ethertype='IPv4', id='d2559e30-a3e2-47cf-be6f-99b9633a5246', |
355| | port_range_max='8472', port_range_min='8472', protocol='udp', standard_attr_id='4811210', |
356| | updated_at='2023-09-05T19:42:44Z' |
357| | created_at='2023-09-05T19:42:44Z', direction='ingress', ethertype='IPv4', id='d9575a8c-874c-4abe-bf0e-3e4f5935feae', |
358| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4811209', |
359| | updated_at='2023-09-05T19:42:44Z' |
360| | created_at='2023-09-05T19:42:42Z', direction='ingress', ethertype='IPv4', id='e0e432f3-ea6b-4d38-94c9-c2fb936bf988', |
361| | protocol='icmp', standard_attr_id='4811187', updated_at='2023-09-05T19:42:42Z' |
362| | created_at='2023-09-05T19:42:43Z', direction='ingress', ethertype='IPv4', id='e1bdd06d-bc27-4505-960a-589fcaf2ae09', |
363| | port_range_max='7080', port_range_min='7080', protocol='tcp', standard_attr_id='4811197', |
364| | updated_at='2023-09-05T19:42:43Z' |
365| | created_at='2023-09-05T19:42:42Z', direction='egress', ethertype='IPv6', id='e765e586-9c03-4fcf-8778-557086097cac', |
366| | standard_attr_id='4811185', updated_at='2023-09-05T19:42:42Z' |
367| | created_at='2023-09-05T19:42:42Z', direction='ingress', ethertype='IPv4', id='e9b6c131-2823-49ee-9383-2749dd81284a', |
368| | port_range_max='53', port_range_min='53', protocol='tcp', standard_attr_id='4811191', updated_at='2023-09-05T19:42:42Z' |
369| shared | False |
370| stateful | True |
371| tags | [] |
372| updated_at | 2023-09-05T19:42:44Z |
373+-----------------+-------------------------------------------------------------------------------------------------------------------------+
374wmcs-openstack security group delete 091ac06d-8fc7-4ac9-b001-bc7c0cc78191
375sg: 0a788472-4245-415f-8f07-b13be1540ec1 project: cloudtest
376delete sg 0a788472-4245-415f-8f07-b13be1540ec1 because project cloudtest doesn't exists
377+-----------------+-------------------------------------------------------------------------------------------------------------------------+
378| Field | Value |
379+-----------------+-------------------------------------------------------------------------------------------------------------------------+
380| created_at | 2018-07-13T19:11:58Z |
381| description | Default security group |
382| id | 0a788472-4245-415f-8f07-b13be1540ec1 |
383| name | default |
384| project_id | cloudtest |
385| revision_number | 0 |
386| rules | belongs_to_default_sg='True', created_at='2018-07-13T19:11:58Z', direction='egress', ethertype='IPv6', |
387| | id='0a050a98-a1e3-4ae4-a904-8cd00bfc2360', standard_attr_id='230', updated_at='2018-07-13T19:11:58Z' |
388| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:58Z', direction='ingress', ethertype='IPv6', |
389| | id='103e5f80-c9a8-417d-9b66-216dfeb3ec60', remote_group_id='0a788472-4245-415f-8f07-b13be1540ec1', |
390| | standard_attr_id='229', updated_at='2018-07-13T19:11:58Z' |
391| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:58Z', direction='ingress', ethertype='IPv4', |
392| | id='13ba299b-d755-43b5-8b99-882aaca84db6', remote_group_id='0a788472-4245-415f-8f07-b13be1540ec1', |
393| | standard_attr_id='227', updated_at='2018-07-13T19:11:58Z' |
394| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:58Z', direction='ingress', ethertype='IPv4', |
395| | id='2a6b885c-9fbc-46aa-92ab-9c56bb6312fe', normalized_cidr='10.0.0.0/8', port_range_max='5666', port_range_min='5666', |
396| | protocol='tcp', remote_ip_prefix='10.0.0.0/8', standard_attr_id='233', updated_at='2018-07-13T19:11:58Z' |
397| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:58Z', direction='ingress', ethertype='IPv4', |
398| | id='43793bc0-6172-4d29-80a4-d2a8d00424bc', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
399| | standard_attr_id='231', updated_at='2018-07-13T19:11:58Z' |
400| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:59Z', direction='ingress', ethertype='IPv4', |
401| | id='5363f934-99bd-49bf-9564-273a06078a00', port_range_max='65535', port_range_min='1', protocol='tcp', |
402| | remote_group_id='0a788472-4245-415f-8f07-b13be1540ec1', standard_attr_id='234', updated_at='2018-07-13T19:11:59Z' |
403| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:58Z', direction='ingress', ethertype='IPv4', id='a25695aa- |
404| | ca80-4d55-8ebc-b5dc7398a743', normalized_cidr='10.0.0.0/8', port_range_max='22', port_range_min='22', protocol='tcp', |
405| | remote_ip_prefix='10.0.0.0/8', standard_attr_id='232', updated_at='2018-07-13T19:11:58Z' |
406| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:59Z', direction='ingress', ethertype='IPv4', |
407| | id='aeb44ad5-92ef-42cf-9c7f-e85d92828b35', port_range_max='65535', port_range_min='1', protocol='udp', |
408| | remote_group_id='0a788472-4245-415f-8f07-b13be1540ec1', standard_attr_id='235', updated_at='2018-07-13T19:11:59Z' |
409| | belongs_to_default_sg='True', created_at='2018-07-13T19:11:58Z', direction='egress', ethertype='IPv4', |
410| | id='ce9cfdf9-a839-4f82-932b-5f2954db3d4d', standard_attr_id='228', updated_at='2018-07-13T19:11:58Z' |
411| shared | False |
412| stateful | True |
413| tags | [] |
414| updated_at | 2018-07-13T19:11:58Z |
415+-----------------+-------------------------------------------------------------------------------------------------------------------------+
416wmcs-openstack security group delete 0a788472-4245-415f-8f07-b13be1540ec1
417sg: 0abfacae-c0f2-49f8-9695-426fef86b1c1 project: secgrouptest1
418delete sg 0abfacae-c0f2-49f8-9695-426fef86b1c1 because project secgrouptest1 doesn't exists
419+-----------------+-------------------------------------------------------------------------------------------------------------------------+
420| Field | Value |
421+-----------------+-------------------------------------------------------------------------------------------------------------------------+
422| created_at | 2021-05-17T17:43:31Z |
423| description | Default security group |
424| id | 0abfacae-c0f2-49f8-9695-426fef86b1c1 |
425| name | default |
426| project_id | secgrouptest1 |
427| revision_number | 6 |
428| rules | belongs_to_default_sg='True', created_at='2021-05-17T17:43:31Z', direction='ingress', ethertype='IPv4', |
429| | id='1d73df3a-bed8-42f5-8210-63f5a4b64ce5', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
430| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='6770', updated_at='2021-05-17T17:43:31Z' |
431| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:32Z', direction='ingress', ethertype='IPv4', |
432| | id='30a92a6a-93c5-49c2-9dc6-2318243db98b', protocol='udp', remote_group_id='0abfacae-c0f2-49f8-9695-426fef86b1c1', |
433| | standard_attr_id='6776', updated_at='2021-05-17T17:43:32Z' |
434| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:31Z', direction='ingress', ethertype='IPv4', |
435| | id='704b161e-c107-416c-bf5e-9865c5fc0628', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
436| | standard_attr_id='6767', updated_at='2021-05-17T17:43:31Z' |
437| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:31Z', direction='egress', ethertype='IPv4', |
438| | id='a64e7b9c-6d27-4816-9f0b-3ccf15d0a77e', standard_attr_id='6758', updated_at='2021-05-17T17:43:31Z' |
439| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:31Z', direction='ingress', ethertype='IPv4', |
440| | id='b2407022-356f-4db7-b415-078e91265786', remote_group_id='0abfacae-c0f2-49f8-9695-426fef86b1c1', |
441| | standard_attr_id='6755', updated_at='2021-05-17T17:43:31Z' |
442| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:31Z', direction='ingress', ethertype='IPv6', |
443| | id='b4fdaa3e-554a-4ac9-8ea1-37ee7867f8c4', remote_group_id='0abfacae-c0f2-49f8-9695-426fef86b1c1', |
444| | standard_attr_id='6761', updated_at='2021-05-17T17:43:31Z' |
445| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:31Z', direction='egress', ethertype='IPv6', |
446| | id='d48e3c22-48a5-40ba-9184-cd2c87979338', standard_attr_id='6764', updated_at='2021-05-17T17:43:31Z' |
447| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:31Z', direction='ingress', ethertype='IPv4', |
448| | id='d5e06111-b50e-4aa5-a0eb-f99e5460094c', port_range_max='22', port_range_min='22', protocol='tcp', |
449| | remote_group_id='0abfacae-c0f2-49f8-9695-426fef86b1c1', standard_attr_id='6773', updated_at='2021-05-17T17:43:31Z' |
450| | belongs_to_default_sg='True', created_at='2021-05-17T17:43:32Z', direction='ingress', ethertype='IPv4', |
451| | id='debe2c67-a383-46cf-9ab6-a4bccb7e16eb', protocol='icmp', remote_group_id='0abfacae-c0f2-49f8-9695-426fef86b1c1', |
452| | standard_attr_id='6779', updated_at='2021-05-17T17:43:32Z' |
453| shared | False |
454| stateful | True |
455| tags | [] |
456| updated_at | 2021-05-17T17:43:32Z |
457+-----------------+-------------------------------------------------------------------------------------------------------------------------+
458wmcs-openstack security group delete 0abfacae-c0f2-49f8-9695-426fef86b1c1
459sg: 0b48ead5-a8af-49b3-bc29-0eb6a9f1d952 project: devtest
460delete sg 0b48ead5-a8af-49b3-bc29-0eb6a9f1d952 because project devtest doesn't exists
461+-----------------+-------------------------------------------------------------------------------------------------------------------------+
462| Field | Value |
463+-----------------+-------------------------------------------------------------------------------------------------------------------------+
464| created_at | 2019-09-05T13:44:19Z |
465| description | Default security group |
466| id | 0b48ead5-a8af-49b3-bc29-0eb6a9f1d952 |
467| name | default |
468| project_id | devtest |
469| revision_number | 1 |
470| rules | belongs_to_default_sg='True', created_at='2020-02-10T22:22:33Z', description='bastion ssh access', direction='ingress', |
471| | ethertype='IPv4', id='12d44a8b-348d-4e0e-b75c-6c86f8178f3b', normalized_cidr='172.16.128.0/24', port_range_max='22', |
472| | port_range_min='22', protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1039', |
473| | updated_at='2020-02-10T22:22:33Z' |
474| | belongs_to_default_sg='True', created_at='2019-09-05T13:44:19Z', direction='egress', ethertype='IPv4', |
475| | id='30697c6c-9d39-4992-96f0-4d5b5b968979', standard_attr_id='559', updated_at='2019-09-05T13:44:19Z' |
476| | belongs_to_default_sg='True', created_at='2019-09-05T13:44:19Z', direction='ingress', ethertype='IPv4', |
477| | id='6a267b9a-9012-46f9-8d92-8456f66b70ae', remote_group_id='0b48ead5-a8af-49b3-bc29-0eb6a9f1d952', |
478| | standard_attr_id='558', updated_at='2019-09-05T13:44:19Z' |
479| | belongs_to_default_sg='True', created_at='2019-09-05T13:44:19Z', direction='egress', ethertype='IPv6', |
480| | id='a90ccdf0-7b1f-4a0b-90ba-f9c2c63c426c', standard_attr_id='561', updated_at='2019-09-05T13:44:19Z' |
481| | belongs_to_default_sg='True', created_at='2019-09-05T13:44:19Z', direction='ingress', ethertype='IPv6', |
482| | id='f6f2c0e9-d4a0-4d6f-a419-b4a24e435cfb', remote_group_id='0b48ead5-a8af-49b3-bc29-0eb6a9f1d952', |
483| | standard_attr_id='560', updated_at='2019-09-05T13:44:19Z' |
484| shared | False |
485| stateful | True |
486| tags | [] |
487| updated_at | 2020-02-10T22:22:33Z |
488+-----------------+-------------------------------------------------------------------------------------------------------------------------+
489wmcs-openstack security group delete 0b48ead5-a8af-49b3-bc29-0eb6a9f1d952
490sg: 0b58a6d7-2e93-43a0-88d8-e9ecef13bf5e project: trove
491sg: 0bba11e9-e2f9-45c9-9d48-176e15ff28e8 project: observer
492sg: 0bd0c53a-8618-48c3-962a-6465d1a2af81 project: cloudvirt-canary
493sg: 0ca135e4-df6b-41bf-b0b4-301bbbfbb194 project: bad/name
494delete sg 0ca135e4-df6b-41bf-b0b4-301bbbfbb194 because project bad/name doesn't exists
495+-----------------+-------------------------------------------------------------------------------------------------------------------------+
496| Field | Value |
497+-----------------+-------------------------------------------------------------------------------------------------------------------------+
498| created_at | 2018-10-25T19:41:18Z |
499| description | Default security group |
500| id | 0ca135e4-df6b-41bf-b0b4-301bbbfbb194 |
501| name | default |
502| project_id | bad/name |
503| revision_number | 0 |
504| rules | belongs_to_default_sg='True', created_at='2018-10-25T19:41:19Z', direction='ingress', ethertype='IPv4', |
505| | id='0a3c8f7d-c062-41f0-bd28-2a8f3f8f8b67', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
506| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='353', updated_at='2018-10-25T19:41:19Z' |
507| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:18Z', direction='ingress', ethertype='IPv6', |
508| | id='1f868efe-e59a-4343-aa45-d4e6b2e6ad45', remote_group_id='0ca135e4-df6b-41bf-b0b4-301bbbfbb194', |
509| | standard_attr_id='349', updated_at='2018-10-25T19:41:18Z' |
510| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:18Z', direction='egress', ethertype='IPv4', |
511| | id='3480b77f-fa1b-41f0-811d-940e3a44f8de', standard_attr_id='348', updated_at='2018-10-25T19:41:18Z' |
512| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:19Z', direction='ingress', ethertype='IPv4', |
513| | id='40a0a2a9-da28-4526-ae8c-ba9a97437c0d', port_range_max='65535', port_range_min='1', protocol='tcp', |
514| | remote_group_id='0ca135e4-df6b-41bf-b0b4-301bbbfbb194', standard_attr_id='354', updated_at='2018-10-25T19:41:19Z' |
515| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:18Z', direction='egress', ethertype='IPv6', |
516| | id='83818c59-1a7d-454f-861a-e53b8d5c8197', standard_attr_id='350', updated_at='2018-10-25T19:41:18Z' |
517| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:19Z', direction='ingress', ethertype='IPv4', |
518| | id='98347e54-0df4-4227-9001-e0fa1522f491', normalized_cidr='10.0.0.0/8', port_range_max='22', port_range_min='22', |
519| | protocol='tcp', remote_ip_prefix='10.0.0.0/8', standard_attr_id='352', updated_at='2018-10-25T19:41:19Z' |
520| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:18Z', direction='ingress', ethertype='IPv4', |
521| | id='9c07d9be-c790-4c3f-9b93-0578bec2d6e6', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
522| | standard_attr_id='351', updated_at='2018-10-25T19:41:18Z' |
523| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:18Z', direction='ingress', ethertype='IPv4', |
524| | id='a0f4c6f4-c849-4519-88c5-8cbbd1380c15', remote_group_id='0ca135e4-df6b-41bf-b0b4-301bbbfbb194', |
525| | standard_attr_id='347', updated_at='2018-10-25T19:41:18Z' |
526| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:19Z', direction='ingress', ethertype='IPv4', |
527| | id='c59c28cd-15f1-4cdd-a5cb-e70c1ef995e8', port_range_max='65535', port_range_min='1', protocol='udp', |
528| | remote_group_id='0ca135e4-df6b-41bf-b0b4-301bbbfbb194', standard_attr_id='355', updated_at='2018-10-25T19:41:19Z' |
529| shared | False |
530| stateful | True |
531| tags | [] |
532| updated_at | 2018-10-25T19:41:18Z |
533+-----------------+-------------------------------------------------------------------------------------------------------------------------+
534wmcs-openstack security group delete 0ca135e4-df6b-41bf-b0b4-301bbbfbb194
535sg: 0d454cfc-ab66-409c-98ef-9c19ea6508f7 project: cloudinfra-codfw1dev
536sg: 0edede94-9b3a-424f-8bad-71befff50650 project: policy-test-project
537delete sg 0edede94-9b3a-424f-8bad-71befff50650 because project policy-test-project doesn't exists
538+-----------------+-------------------------------------------------------------------------------------------------------------------------+
539| Field | Value |
540+-----------------+-------------------------------------------------------------------------------------------------------------------------+
541| created_at | 2021-04-11T15:59:59Z |
542| description | Default security group |
543| id | 0edede94-9b3a-424f-8bad-71befff50650 |
544| name | default |
545| project_id | policy-test-project |
546| revision_number | 6 |
547| rules | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='ingress', ethertype='IPv6', |
548| | id='5223ab7f-1e23-474d-a793-4302dcbd0eea', remote_group_id='0edede94-9b3a-424f-8bad-71befff50650', |
549| | standard_attr_id='4128', updated_at='2021-04-11T15:59:59Z' |
550| | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='egress', ethertype='IPv4', |
551| | id='5939f385-0e05-4eae-99d7-d6d3ecaae7d4', standard_attr_id='4125', updated_at='2021-04-11T15:59:59Z' |
552| | belongs_to_default_sg='True', created_at='2021-04-11T16:00:00Z', direction='ingress', ethertype='IPv4', |
553| | id='5e71a263-d190-450a-861e-11536eb36247', protocol='icmp', remote_group_id='0edede94-9b3a-424f-8bad-71befff50650', |
554| | standard_attr_id='4146', updated_at='2021-04-11T16:00:00Z' |
555| | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='ingress', ethertype='IPv4', |
556| | id='60643c3f-e567-4593-b412-8297ebe86198', port_range_max='22', port_range_min='22', protocol='tcp', |
557| | remote_group_id='0edede94-9b3a-424f-8bad-71befff50650', standard_attr_id='4140', updated_at='2021-04-11T15:59:59Z' |
558| | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='ingress', ethertype='IPv4', |
559| | id='66cfd610-5d8d-4e3e-9c17-d8515e5be814', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
560| | standard_attr_id='4134', updated_at='2021-04-11T15:59:59Z' |
561| | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='ingress', ethertype='IPv4', |
562| | id='6813a868-1ff8-440c-ba2a-0420d4659f10', remote_group_id='0edede94-9b3a-424f-8bad-71befff50650', |
563| | standard_attr_id='4122', updated_at='2021-04-11T15:59:59Z' |
564| | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='ingress', ethertype='IPv4', |
565| | id='90a1c6f4-43fd-4dc6-b899-894fd7cffc08', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
566| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4137', updated_at='2021-04-11T15:59:59Z' |
567| | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='egress', ethertype='IPv6', |
568| | id='aa8f3059-12a8-4618-9861-17df8a5db067', standard_attr_id='4131', updated_at='2021-04-11T15:59:59Z' |
569| | belongs_to_default_sg='True', created_at='2021-04-11T15:59:59Z', direction='ingress', ethertype='IPv4', |
570| | id='e8327af2-a3ad-492f-8385-288590eae345', protocol='udp', remote_group_id='0edede94-9b3a-424f-8bad-71befff50650', |
571| | standard_attr_id='4143', updated_at='2021-04-11T15:59:59Z' |
572| shared | False |
573| stateful | True |
574| tags | [] |
575| updated_at | 2021-04-11T16:00:00Z |
576+-----------------+-------------------------------------------------------------------------------------------------------------------------+
577wmcs-openstack security group delete 0edede94-9b3a-424f-8bad-71befff50650
578sg: 12774978-9380-4b8f-a0c7-c016e0e35250 project: admin
579sg: 13019114-5cfb-47f0-b9ec-a35773d40bb0 project: taavi-test-project
580delete sg 13019114-5cfb-47f0-b9ec-a35773d40bb0 because project taavi-test-project doesn't exists
581+-----------------+-------------------------------------------------------------------------------------------------------------------------+
582| Field | Value |
583+-----------------+-------------------------------------------------------------------------------------------------------------------------+
584| created_at | 2021-11-18T08:12:23Z |
585| description | Default security group |
586| id | 13019114-5cfb-47f0-b9ec-a35773d40bb0 |
587| name | default |
588| project_id | taavi-test-project |
589| revision_number | 7 |
590| rules | belongs_to_default_sg='True', created_at='2021-11-18T08:12:23Z', direction='ingress', ethertype='IPv4', |
591| | id='08ebfd0b-6008-4d2f-b634-4a95d16eb0ad', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
592| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4687322', updated_at='2021-11-18T08:12:23Z' |
593| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:23Z', direction='ingress', ethertype='IPv4', |
594| | id='19261561-aff7-48c5-bd94-a6f9af646d1c', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
595| | standard_attr_id='4687319', updated_at='2021-11-18T08:12:23Z' |
596| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:23Z', direction='ingress', ethertype='IPv4', |
597| | id='2aabf5b9-2321-4954-a9d3-b716c9645f01', remote_group_id='13019114-5cfb-47f0-b9ec-a35773d40bb0', |
598| | standard_attr_id='4687307', updated_at='2021-11-18T08:12:23Z' |
599| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:24Z', direction='ingress', ethertype='IPv4', |
600| | id='2cc25dec-639d-490e-9350-ef09b6951569', protocol='icmp', remote_group_id='13019114-5cfb-47f0-b9ec-a35773d40bb0', |
601| | standard_attr_id='4687331', updated_at='2021-11-18T08:12:24Z' |
602| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:23Z', direction='ingress', ethertype='IPv6', |
603| | id='2f1e3fb3-cc9c-441f-b603-ad9c10f11a8d', remote_group_id='13019114-5cfb-47f0-b9ec-a35773d40bb0', |
604| | standard_attr_id='4687313', updated_at='2021-11-18T08:12:23Z' |
605| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:23Z', direction='ingress', ethertype='IPv4', |
606| | id='7ac88782-a217-4be0-9833-4dbd4d145113', port_range_max='22', port_range_min='22', protocol='tcp', |
607| | remote_group_id='13019114-5cfb-47f0-b9ec-a35773d40bb0', standard_attr_id='4687325', updated_at='2021-11-18T08:12:23Z' |
608| | belongs_to_default_sg='True', created_at='2021-11-18T08:13:54Z', direction='ingress', ethertype='IPv4', |
609| | id='96039f74-144f-4eb6-a4fc-26efe9d7d9f4', normalized_cidr='0.0.0.0/0', port_range_max='80', port_range_min='80', |
610| | protocol='tcp', remote_ip_prefix='0.0.0.0/0', standard_attr_id='4687337', updated_at='2021-11-18T08:13:54Z' |
611| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:24Z', direction='ingress', ethertype='IPv4', |
612| | id='f008b0eb-19d4-447c-b495-115ad753ed4e', protocol='udp', remote_group_id='13019114-5cfb-47f0-b9ec-a35773d40bb0', |
613| | standard_attr_id='4687328', updated_at='2021-11-18T08:12:24Z' |
614| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:23Z', direction='egress', ethertype='IPv4', id='fa09eedb- |
615| | ae40-4af0-8a52-1f9d93efd176', standard_attr_id='4687310', updated_at='2021-11-18T08:12:23Z' |
616| | belongs_to_default_sg='True', created_at='2021-11-18T08:12:23Z', direction='egress', ethertype='IPv6', |
617| | id='fe636bb0-f7a1-41ca-9b5d-99db9ae0017d', standard_attr_id='4687316', updated_at='2021-11-18T08:12:23Z' |
618| shared | False |
619| stateful | True |
620| tags | [] |
621| updated_at | 2021-11-18T08:13:54Z |
622+-----------------+-------------------------------------------------------------------------------------------------------------------------+
623wmcs-openstack security group delete 13019114-5cfb-47f0-b9ec-a35773d40bb0
624sg: 15d4e022-357e-417b-9fa7-726e88a7494d project: bastioninfra-codfw1dev
625sg: 15eea1b2-4f64-4839-af39-75886bf14296 project: trove
626sg: 1628b4ec-259e-4bdc-9d42-44c392ad3f02 project: proxy-codfw1dev
627sg: 163f06f0-aa9b-4a1d-909c-cc37d161fa6f project: devproject15
628delete sg 163f06f0-aa9b-4a1d-909c-cc37d161fa6f because project devproject15 doesn't exists
629+-----------------+-------------------------------------------------------------------------------------------------------------------------+
630| Field | Value |
631+-----------------+-------------------------------------------------------------------------------------------------------------------------+
632| created_at | 2019-05-20T17:11:39Z |
633| description | Default security group |
634| id | 163f06f0-aa9b-4a1d-909c-cc37d161fa6f |
635| name | default |
636| project_id | devproject15 |
637| revision_number | 0 |
638| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:11:39Z', direction='egress', ethertype='IPv4', |
639| | id='203b6472-21b7-4bbb-954e-4ea16a0641d1', standard_attr_id='442', updated_at='2019-05-20T17:11:39Z' |
640| | belongs_to_default_sg='True', created_at='2019-05-20T17:11:39Z', direction='ingress', ethertype='IPv6', |
641| | id='576aacff-1298-447f-87f9-1dd14a649721', remote_group_id='163f06f0-aa9b-4a1d-909c-cc37d161fa6f', |
642| | standard_attr_id='443', updated_at='2019-05-20T17:11:39Z' |
643| | belongs_to_default_sg='True', created_at='2019-05-20T17:11:39Z', direction='egress', ethertype='IPv6', |
644| | id='7684c234-f238-4c77-b7f0-045ec65f7b9f', standard_attr_id='444', updated_at='2019-05-20T17:11:39Z' |
645| | belongs_to_default_sg='True', created_at='2019-05-20T17:11:39Z', direction='ingress', ethertype='IPv4', |
646| | id='7cc93dc3-320d-487b-997b-822652ec13c6', remote_group_id='163f06f0-aa9b-4a1d-909c-cc37d161fa6f', |
647| | standard_attr_id='441', updated_at='2019-05-20T17:11:39Z' |
648| shared | False |
649| stateful | True |
650| tags | [] |
651| updated_at | 2019-05-20T17:11:39Z |
652+-----------------+-------------------------------------------------------------------------------------------------------------------------+
653wmcs-openstack security group delete 163f06f0-aa9b-4a1d-909c-cc37d161fa6f
654sg: 164c101b-46ca-4fdb-9395-874922abcd04 project: ussuriprojecttest2
655delete sg 164c101b-46ca-4fdb-9395-874922abcd04 because project ussuriprojecttest2 doesn't exists
656+-----------------+-------------------------------------------------------------------------------------------------------------------------+
657| Field | Value |
658+-----------------+-------------------------------------------------------------------------------------------------------------------------+
659| created_at | 2021-04-07T11:40:59Z |
660| description | Default security group |
661| id | 164c101b-46ca-4fdb-9395-874922abcd04 |
662| name | default |
663| project_id | ussuriprojecttest2 |
664| revision_number | 6 |
665| rules | belongs_to_default_sg='True', created_at='2021-04-07T11:40:59Z', direction='egress', ethertype='IPv6', |
666| | id='14e45224-e106-489b-b525-b55b083322fa', standard_attr_id='3672', updated_at='2021-04-07T11:40:59Z' |
667| | belongs_to_default_sg='True', created_at='2021-04-07T11:40:59Z', direction='ingress', ethertype='IPv4', |
668| | id='150f1c03-450d-48a7-b4ed-b25b8be02127', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
669| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3678', updated_at='2021-04-07T11:40:59Z' |
670| | belongs_to_default_sg='True', created_at='2021-04-07T11:41:00Z', direction='ingress', ethertype='IPv4', |
671| | id='16006af4-31cc-460c-8c83-75c745d49cc9', protocol='udp', remote_group_id='164c101b-46ca-4fdb-9395-874922abcd04', |
672| | standard_attr_id='3684', updated_at='2021-04-07T11:41:00Z' |
673| | belongs_to_default_sg='True', created_at='2021-04-07T11:40:59Z', direction='ingress', ethertype='IPv6', |
674| | id='31ca907f-4fd5-48a5-85b6-bd6495d7d9b2', remote_group_id='164c101b-46ca-4fdb-9395-874922abcd04', |
675| | standard_attr_id='3669', updated_at='2021-04-07T11:40:59Z' |
676| | belongs_to_default_sg='True', created_at='2021-04-07T11:40:59Z', direction='ingress', ethertype='IPv4', |
677| | id='4a22a869-2445-4a8d-ae0c-db036ed9ddc4', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
678| | standard_attr_id='3675', updated_at='2021-04-07T11:40:59Z' |
679| | belongs_to_default_sg='True', created_at='2021-04-07T11:40:59Z', direction='egress', ethertype='IPv4', |
680| | id='6f6043aa-7e04-4fdc-a146-52dbbb61a424', standard_attr_id='3666', updated_at='2021-04-07T11:40:59Z' |
681| | belongs_to_default_sg='True', created_at='2021-04-07T11:41:00Z', direction='ingress', ethertype='IPv4', |
682| | id='cd9773db-9a53-4c65-80c2-9a2f377821bd', protocol='icmp', remote_group_id='164c101b-46ca-4fdb-9395-874922abcd04', |
683| | standard_attr_id='3687', updated_at='2021-04-07T11:41:00Z' |
684| | belongs_to_default_sg='True', created_at='2021-04-07T11:40:59Z', direction='ingress', ethertype='IPv4', |
685| | id='e401c40a-4038-43fb-b4dd-6984f746bf5d', remote_group_id='164c101b-46ca-4fdb-9395-874922abcd04', |
686| | standard_attr_id='3663', updated_at='2021-04-07T11:40:59Z' |
687| | belongs_to_default_sg='True', created_at='2021-04-07T11:40:59Z', direction='ingress', ethertype='IPv4', |
688| | id='e432b88c-cd24-44fe-bcfd-8d31ad08905f', port_range_max='22', port_range_min='22', protocol='tcp', |
689| | remote_group_id='164c101b-46ca-4fdb-9395-874922abcd04', standard_attr_id='3681', updated_at='2021-04-07T11:40:59Z' |
690| shared | False |
691| stateful | True |
692| tags | [] |
693| updated_at | 2021-04-07T11:41:00Z |
694+-----------------+-------------------------------------------------------------------------------------------------------------------------+
695wmcs-openstack security group delete 164c101b-46ca-4fdb-9395-874922abcd04
696sg: 1799df60-d506-4dc6-a3a2-38f96880cd56 project: admin
697sg: 1963aeb1-ffa2-4531-a27b-ace27f6af195 project: testtroveproj2
698delete sg 1963aeb1-ffa2-4531-a27b-ace27f6af195 because project testtroveproj2 doesn't exists
699+-----------------+-------------------------------------------------------------------------------------------------------------------------+
700| Field | Value |
701+-----------------+-------------------------------------------------------------------------------------------------------------------------+
702| created_at | 2023-05-24T17:01:00Z |
703| description | Default security group |
704| id | 1963aeb1-ffa2-4531-a27b-ace27f6af195 |
705| name | default |
706| project_id | testtroveproj2 |
707| revision_number | 6 |
708| rules | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='egress', ethertype='IPv4', |
709| | id='007f0e97-5b0a-4d38-ba5f-48b800d4b129', standard_attr_id='4782313', updated_at='2023-05-24T17:01:00Z' |
710| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:01Z', direction='ingress', ethertype='IPv4', |
711| | id='04e0cf3b-1024-4bbb-bfd6-f23d7c98e068', protocol='icmp', remote_group_id='1963aeb1-ffa2-4531-a27b-ace27f6af195', |
712| | standard_attr_id='4782334', updated_at='2023-05-24T17:01:01Z' |
713| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='ingress', ethertype='IPv4', |
714| | id='16c9be31-e1fc-456a-83c5-0bdfddbf9d39', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
715| | standard_attr_id='4782322', updated_at='2023-05-24T17:01:00Z' |
716| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='ingress', ethertype='IPv6', |
717| | id='275b42d4-9a2f-467f-9850-1ed4458f7d7c', remote_group_id='1963aeb1-ffa2-4531-a27b-ace27f6af195', |
718| | standard_attr_id='4782316', updated_at='2023-05-24T17:01:00Z' |
719| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='ingress', ethertype='IPv4', |
720| | id='41014d5f-4417-4cde-8849-aa516696aee4', remote_group_id='1963aeb1-ffa2-4531-a27b-ace27f6af195', |
721| | standard_attr_id='4782310', updated_at='2023-05-24T17:01:00Z' |
722| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='egress', ethertype='IPv6', |
723| | id='b25f8056-1f54-4e7c-9e54-957b9306ef5a', standard_attr_id='4782319', updated_at='2023-05-24T17:01:00Z' |
724| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='ingress', ethertype='IPv4', |
725| | id='c0c8bf83-ef76-46f1-9193-c32c52caeb2a', port_range_max='22', port_range_min='22', protocol='tcp', |
726| | remote_group_id='1963aeb1-ffa2-4531-a27b-ace27f6af195', standard_attr_id='4782328', updated_at='2023-05-24T17:01:00Z' |
727| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='ingress', ethertype='IPv4', |
728| | id='fa2d24fe-a488-4e42-a457-3671bd3b033d', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
729| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4782325', updated_at='2023-05-24T17:01:00Z' |
730| | belongs_to_default_sg='True', created_at='2023-05-24T17:01:00Z', direction='ingress', ethertype='IPv4', |
731| | id='fec0425a-bdd0-48f7-bc8b-ce5d9126c5f2', protocol='udp', remote_group_id='1963aeb1-ffa2-4531-a27b-ace27f6af195', |
732| | standard_attr_id='4782331', updated_at='2023-05-24T17:01:00Z' |
733| shared | False |
734| stateful | True |
735| tags | [] |
736| updated_at | 2023-05-24T17:01:01Z |
737+-----------------+-------------------------------------------------------------------------------------------------------------------------+
738wmcs-openstack security group delete 1963aeb1-ffa2-4531-a27b-ace27f6af195
739sg: 198ed895-d5a9-4dac-bfd0-d67e9931d3dd project: 501b0b80b5e044259ce65d80ebe65144
740delete sg 198ed895-d5a9-4dac-bfd0-d67e9931d3dd because project 501b0b80b5e044259ce65d80ebe65144 doesn't exists
741+-----------------+-------------------------------------------------------------------------------------------------------------------------+
742| Field | Value |
743+-----------------+-------------------------------------------------------------------------------------------------------------------------+
744| created_at | 2024-07-17T23:05:19Z |
745| description | Default security group |
746| id | 198ed895-d5a9-4dac-bfd0-d67e9931d3dd |
747| name | default |
748| project_id | 501b0b80b5e044259ce65d80ebe65144 |
749| revision_number | 6 |
750| rules | belongs_to_default_sg='True', created_at='2024-07-17T23:05:20Z', direction='ingress', ethertype='IPv4', |
751| | id='23c046ec-8552-49a6-aa4a-01c696d62436', protocol='udp', remote_group_id='198ed895-d5a9-4dac-bfd0-d67e9931d3dd', |
752| | standard_attr_id='4922604', updated_at='2024-07-17T23:05:20Z' |
753| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:20Z', direction='ingress', ethertype='IPv4', |
754| | id='754f7d90-858f-46cb-8630-d2a3dac9d536', protocol='icmp', remote_group_id='198ed895-d5a9-4dac-bfd0-d67e9931d3dd', |
755| | standard_attr_id='4922607', updated_at='2024-07-17T23:05:20Z' |
756| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:19Z', direction='egress', ethertype='IPv6', |
757| | id='77aa2da9-cd0b-4233-aa96-d79a9cd57bb9', standard_attr_id='4922586', updated_at='2024-07-17T23:05:19Z' |
758| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:20Z', direction='ingress', ethertype='IPv4', |
759| | id='7cb8f7c6-b4d1-4f67-b9e3-af198002acff', port_range_max='22', port_range_min='22', protocol='tcp', |
760| | remote_group_id='198ed895-d5a9-4dac-bfd0-d67e9931d3dd', standard_attr_id='4922601', updated_at='2024-07-17T23:05:20Z' |
761| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:19Z', direction='egress', ethertype='IPv4', |
762| | id='8c3c7c32-dd0a-4089-81d9-bfb0afa98340', standard_attr_id='4922592', updated_at='2024-07-17T23:05:19Z' |
763| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:19Z', direction='ingress', ethertype='IPv4', |
764| | id='9447958d-8c28-4268-a43a-52ef97bd0f6b', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
765| | standard_attr_id='4922595', updated_at='2024-07-17T23:05:19Z' |
766| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:20Z', direction='ingress', ethertype='IPv4', |
767| | id='abfffd40-de6b-4b27-aec5-1105a116a2aa', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
768| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4922598', updated_at='2024-07-17T23:05:20Z' |
769| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:19Z', direction='ingress', ethertype='IPv6', |
770| | id='d23e8874-544a-4677-954d-882214298c25', remote_group_id='198ed895-d5a9-4dac-bfd0-d67e9931d3dd', |
771| | standard_attr_id='4922589', updated_at='2024-07-17T23:05:19Z' |
772| | belongs_to_default_sg='True', created_at='2024-07-17T23:05:19Z', direction='ingress', ethertype='IPv4', |
773| | id='d8504705-9eb9-4645-9740-cf88f58dd1b9', remote_group_id='198ed895-d5a9-4dac-bfd0-d67e9931d3dd', |
774| | standard_attr_id='4922583', updated_at='2024-07-17T23:05:19Z' |
775| shared | False |
776| stateful | True |
777| tags | [] |
778| updated_at | 2024-07-17T23:05:20Z |
779+-----------------+-------------------------------------------------------------------------------------------------------------------------+
780wmcs-openstack security group delete 198ed895-d5a9-4dac-bfd0-d67e9931d3dd
781sg: 1a9ba625-fbf8-422c-9c55-205357803ad9 project: admin
782sg: 1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8 project: ldaptestproject3
783delete sg 1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8 because project ldaptestproject3 doesn't exists
784+-----------------+-------------------------------------------------------------------------------------------------------------------------+
785| Field | Value |
786+-----------------+-------------------------------------------------------------------------------------------------------------------------+
787| created_at | 2020-04-06T23:45:41Z |
788| description | Default security group |
789| id | 1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8 |
790| name | default |
791| project_id | ldaptestproject3 |
792| revision_number | 6 |
793| rules | belongs_to_default_sg='True', created_at='2020-04-06T23:45:41Z', direction='egress', ethertype='IPv4', |
794| | id='0df60b4f-647a-4d5f-8cbc-cf488b425dad', standard_attr_id='1251', updated_at='2020-04-06T23:45:41Z' |
795| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:41Z', direction='ingress', ethertype='IPv6', |
796| | id='26322ae9-6a18-432f-9b0e-bb756a3cd54e', remote_group_id='1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8', |
797| | standard_attr_id='1252', updated_at='2020-04-06T23:45:41Z' |
798| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:41Z', direction='egress', ethertype='IPv6', |
799| | id='362ba48f-d733-4fce-99d2-032b970085f0', standard_attr_id='1253', updated_at='2020-04-06T23:45:41Z' |
800| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:42Z', direction='ingress', ethertype='IPv4', |
801| | id='392f86f9-5ec2-4306-95e2-0045e907576e', port_range_max='22', port_range_min='22', protocol='tcp', |
802| | remote_group_id='1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8', standard_attr_id='1256', updated_at='2020-04-06T23:45:42Z' |
803| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:41Z', direction='ingress', ethertype='IPv4', |
804| | id='77599a0c-681d-4671-a20e-5551605d65b3', remote_group_id='1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8', |
805| | standard_attr_id='1250', updated_at='2020-04-06T23:45:41Z' |
806| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:41Z', direction='ingress', ethertype='IPv4', |
807| | id='80d2bafe-276c-4e97-8e60-4f8fb3495843', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
808| | standard_attr_id='1254', updated_at='2020-04-06T23:45:41Z' |
809| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:43Z', direction='ingress', ethertype='IPv4', |
810| | id='86b02ff4-e13a-4dc5-ad73-6ca1bef9a031', port_range_max='65535', port_range_min='1', protocol='udp', |
811| | remote_group_id='1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8', standard_attr_id='1257', updated_at='2020-04-06T23:45:43Z' |
812| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:43Z', direction='ingress', ethertype='IPv4', |
813| | id='9ad3d734-9acb-4174-93ac-e6e5da27bb47', protocol='icmp', remote_group_id='1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8', |
814| | standard_attr_id='1258', updated_at='2020-04-06T23:45:43Z' |
815| | belongs_to_default_sg='True', created_at='2020-04-06T23:45:42Z', direction='ingress', ethertype='IPv4', |
816| | id='9be425a4-40d7-4c9d-ae70-3ac59a7312d3', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
817| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1255', updated_at='2020-04-06T23:45:42Z' |
818| shared | False |
819| stateful | True |
820| tags | [] |
821| updated_at | 2020-04-06T23:45:43Z |
822+-----------------+-------------------------------------------------------------------------------------------------------------------------+
823wmcs-openstack security group delete 1c08b5c6-ae5e-41b2-aadb-b68f36ee8db8
824sg: 22c3661e-14de-4826-9e30-69dd9f724a31 project: secgrouptest2
825delete sg 22c3661e-14de-4826-9e30-69dd9f724a31 because project secgrouptest2 doesn't exists
826+-----------------+-------------------------------------------------------------------------------------------------------------------------+
827| Field | Value |
828+-----------------+-------------------------------------------------------------------------------------------------------------------------+
829| created_at | 2021-05-17T19:40:23Z |
830| description | Default security group |
831| id | 22c3661e-14de-4826-9e30-69dd9f724a31 |
832| name | default |
833| project_id | secgrouptest2 |
834| revision_number | 1 |
835| rules | belongs_to_default_sg='True', created_at='2021-05-17T19:40:23Z', direction='ingress', ethertype='IPv6', |
836| | id='7f461e09-7c21-4840-b6fb-31e8d39d914e', remote_group_id='22c3661e-14de-4826-9e30-69dd9f724a31', |
837| | standard_attr_id='6791', updated_at='2021-05-17T19:40:23Z' |
838| | belongs_to_default_sg='True', created_at='2021-05-17T19:40:23Z', direction='ingress', ethertype='IPv4', |
839| | id='a9fbb8f7-630b-422c-a758-6ff4169e3b95', remote_group_id='22c3661e-14de-4826-9e30-69dd9f724a31', |
840| | standard_attr_id='6785', updated_at='2021-05-17T19:40:23Z' |
841| | belongs_to_default_sg='True', created_at='2021-05-17T19:40:24Z', direction='egress', ethertype='IPv6', |
842| | id='ad08426f-ef8d-4a9d-876c-63bfc639f518', standard_attr_id='6794', updated_at='2021-05-17T19:40:24Z' |
843| | belongs_to_default_sg='True', created_at='2021-05-17T19:40:23Z', direction='egress', ethertype='IPv4', |
844| | id='e4b25bdc-0362-40f9-bc50-e88b8e618174', standard_attr_id='6788', updated_at='2021-05-17T19:40:23Z' |
845| shared | False |
846| stateful | True |
847| tags | [] |
848| updated_at | 2021-05-17T19:40:23Z |
849+-----------------+-------------------------------------------------------------------------------------------------------------------------+
850wmcs-openstack security group delete 22c3661e-14de-4826-9e30-69dd9f724a31
851sg: 2419dfeb-91da-4a51-89a2-7bb6fadf69fb project: ocata-test-109
852delete sg 2419dfeb-91da-4a51-89a2-7bb6fadf69fb because project ocata-test-109 doesn't exists
853+-----------------+-------------------------------------------------------------------------------------------------------------------------+
854| Field | Value |
855+-----------------+-------------------------------------------------------------------------------------------------------------------------+
856| created_at | 2019-12-03T08:22:20Z |
857| description | Default security group |
858| id | 2419dfeb-91da-4a51-89a2-7bb6fadf69fb |
859| name | default |
860| project_id | ocata-test-109 |
861| revision_number | 6 |
862| rules | belongs_to_default_sg='True', created_at='2019-12-03T08:22:22Z', direction='ingress', ethertype='IPv4', |
863| | id='2718b6a1-b4e3-4ef1-a3a3-974594e8a419', port_range_max='22', port_range_min='22', protocol='tcp', |
864| | remote_group_id='2419dfeb-91da-4a51-89a2-7bb6fadf69fb', revision_number='1', standard_attr_id='831', |
865| | updated_at='2019-12-03T08:22:22Z' |
866| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:23Z', direction='ingress', ethertype='IPv4', |
867| | id='3d7a8236-db93-4ac5-8e2e-2bc35e861e9a', protocol='icmp', remote_group_id='2419dfeb-91da-4a51-89a2-7bb6fadf69fb', |
868| | revision_number='1', standard_attr_id='833', updated_at='2019-12-03T08:22:23Z' |
869| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:20Z', direction='egress', ethertype='IPv4', |
870| | id='42fda1c9-ce02-43ec-ac57-57a5151c60ec', revision_number='1', standard_attr_id='826', |
871| | updated_at='2019-12-03T08:22:20Z' |
872| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:20Z', direction='ingress', ethertype='IPv4', |
873| | id='4c09128e-117a-4f52-b103-f839c5ba5bf5', remote_group_id='2419dfeb-91da-4a51-89a2-7bb6fadf69fb', revision_number='1', |
874| | standard_attr_id='825', updated_at='2019-12-03T08:22:20Z' |
875| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:20Z', direction='egress', ethertype='IPv6', |
876| | id='4c4d3013-fb53-46ea-a783-47feed1a23c6', revision_number='1', standard_attr_id='828', |
877| | updated_at='2019-12-03T08:22:20Z' |
878| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:20Z', direction='ingress', ethertype='IPv6', |
879| | id='9aa97d86-79af-49e5-a2b4-5f715ade2cf6', remote_group_id='2419dfeb-91da-4a51-89a2-7bb6fadf69fb', revision_number='1', |
880| | standard_attr_id='827', updated_at='2019-12-03T08:22:20Z' |
881| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:21Z', direction='ingress', ethertype='IPv4', |
882| | id='b0cb5944-c47a-43c0-857c-8352b1475a69', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
883| | revision_number='1', standard_attr_id='829', updated_at='2019-12-03T08:22:21Z' |
884| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:22Z', direction='ingress', ethertype='IPv4', |
885| | id='b60736ef-35d9-4404-a3ec-ef160b2401da', port_range_max='65535', port_range_min='1', protocol='udp', |
886| | remote_group_id='2419dfeb-91da-4a51-89a2-7bb6fadf69fb', revision_number='1', standard_attr_id='832', |
887| | updated_at='2019-12-03T08:22:22Z' |
888| | belongs_to_default_sg='True', created_at='2019-12-03T08:22:21Z', direction='ingress', ethertype='IPv4', |
889| | id='cfa17183-8449-49ba-8326-fe9412ad1095', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
890| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='830', |
891| | updated_at='2019-12-03T08:22:21Z' |
892| shared | False |
893| stateful | True |
894| tags | [] |
895| updated_at | 2019-12-03T08:22:23Z |
896+-----------------+-------------------------------------------------------------------------------------------------------------------------+
897wmcs-openstack security group delete 2419dfeb-91da-4a51-89a2-7bb6fadf69fb
898sg: 2509704a-2506-4f9d-beb5-0b1e16bdf70d project: trove
899sg: 28cb0e49-6c13-4c78-82ea-32c596754129 project: devproject24
900delete sg 28cb0e49-6c13-4c78-82ea-32c596754129 because project devproject24 doesn't exists
901+-----------------+-------------------------------------------------------------------------------------------------------------------------+
902| Field | Value |
903+-----------------+-------------------------------------------------------------------------------------------------------------------------+
904| created_at | 2019-05-20T17:20:09Z |
905| description | Default security group |
906| id | 28cb0e49-6c13-4c78-82ea-32c596754129 |
907| name | default |
908| project_id | devproject24 |
909| revision_number | 0 |
910| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:20:09Z', direction='egress', ethertype='IPv4', |
911| | id='0a39191c-ae5d-4609-a345-7455f5453f60', standard_attr_id='486', updated_at='2019-05-20T17:20:09Z' |
912| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:10Z', direction='ingress', ethertype='IPv4', |
913| | id='3c984503-279c-4c61-94d9-e6417febf5bd', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
914| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='490', updated_at='2019-05-20T17:20:10Z' |
915| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:09Z', direction='egress', ethertype='IPv6', |
916| | id='4bfb3b1d-03d0-4350-8041-ebdbb7cf2b44', standard_attr_id='488', updated_at='2019-05-20T17:20:09Z' |
917| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:09Z', direction='ingress', ethertype='IPv4', |
918| | id='5f770c41-641f-449e-8b70-26ccc77ca5e7', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
919| | standard_attr_id='489', updated_at='2019-05-20T17:20:09Z' |
920| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:10Z', direction='ingress', ethertype='IPv4', |
921| | id='7ea68323-7298-47ed-9429-3e56ce614028', port_range_max='22', port_range_min='22', protocol='tcp', |
922| | remote_group_id='28cb0e49-6c13-4c78-82ea-32c596754129', standard_attr_id='491', updated_at='2019-05-20T17:20:10Z' |
923| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:09Z', direction='ingress', ethertype='IPv4', |
924| | id='9cf1ed67-9865-4f2b-8655-ade0dcfcb0d4', remote_group_id='28cb0e49-6c13-4c78-82ea-32c596754129', |
925| | standard_attr_id='485', updated_at='2019-05-20T17:20:09Z' |
926| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:10Z', direction='ingress', ethertype='IPv4', |
927| | id='c3d8e1fc-5be1-4f44-bc8f-484a57046932', port_range_max='65535', port_range_min='1', protocol='udp', |
928| | remote_group_id='28cb0e49-6c13-4c78-82ea-32c596754129', standard_attr_id='492', updated_at='2019-05-20T17:20:10Z' |
929| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:09Z', direction='ingress', ethertype='IPv6', |
930| | id='c9e4dd94-8d36-4218-8e93-c3a0c5a43822', remote_group_id='28cb0e49-6c13-4c78-82ea-32c596754129', |
931| | standard_attr_id='487', updated_at='2019-05-20T17:20:09Z' |
932| | belongs_to_default_sg='True', created_at='2019-05-20T17:20:10Z', direction='ingress', ethertype='IPv4', |
933| | id='d3dabe70-afd2-465b-93dd-e7c256bea3ff', protocol='icmp', remote_group_id='28cb0e49-6c13-4c78-82ea-32c596754129', |
934| | standard_attr_id='493', updated_at='2019-05-20T17:20:10Z' |
935| shared | False |
936| stateful | True |
937| tags | [] |
938| updated_at | 2019-05-20T17:20:09Z |
939+-----------------+-------------------------------------------------------------------------------------------------------------------------+
940wmcs-openstack security group delete 28cb0e49-6c13-4c78-82ea-32c596754129
941sg: 292cdfd5-9ba3-488e-bbf0-2a60439340c1 project: ddd6e29bd8584c5abc35dd62f836c086
942delete sg 292cdfd5-9ba3-488e-bbf0-2a60439340c1 because project ddd6e29bd8584c5abc35dd62f836c086 doesn't exists
943+-----------------+-------------------------------------------------------------------------------------------------------------------------+
944| Field | Value |
945+-----------------+-------------------------------------------------------------------------------------------------------------------------+
946| created_at | 2024-09-25T09:51:47Z |
947| description | Default security group |
948| id | 292cdfd5-9ba3-488e-bbf0-2a60439340c1 |
949| name | default |
950| project_id | ddd6e29bd8584c5abc35dd62f836c086 |
951| revision_number | 7 |
952| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
953| | id='297b1b7a-0820-4c65-abed-980d753a02ea', protocol='udp', remote_group_id='292cdfd5-9ba3-488e-bbf0-2a60439340c1', |
954| | standard_attr_id='4950883', updated_at='2024-09-25T09:51:49Z' |
955| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
956| | id='2f61fb3a-e5dc-4023-b119-47f66a08309d', remote_group_id='292cdfd5-9ba3-488e-bbf0-2a60439340c1', |
957| | standard_attr_id='4950652', updated_at='2024-09-25T09:51:47Z' |
958| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
959| | id='38ade931-d349-488d-a79e-d78f771dd818', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
960| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950817', updated_at='2024-09-25T09:51:48Z' |
961| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
962| | id='4e88d9c6-1b45-4423-9d5b-a39b718d084b', protocol='icmp', remote_group_id='292cdfd5-9ba3-488e-bbf0-2a60439340c1', |
963| | standard_attr_id='4950904', updated_at='2024-09-25T09:51:49Z' |
964| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
965| | id='52bd30d3-d435-498a-af71-b6f1d86836e4', remote_group_id='292cdfd5-9ba3-488e-bbf0-2a60439340c1', |
966| | standard_attr_id='4950649', updated_at='2024-09-25T09:51:47Z' |
967| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
968| | id='593015cb-74ef-4024-9740-6bc1b176221a', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
969| | standard_attr_id='4950769', updated_at='2024-09-25T09:51:47Z' |
970| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
971| | id='69366a35-76ac-4e13-90f2-c9ebcf0464cf', port_range_max='22', port_range_min='22', protocol='tcp', |
972| | remote_group_id='292cdfd5-9ba3-488e-bbf0-2a60439340c1', standard_attr_id='4950862', updated_at='2024-09-25T09:51:49Z' |
973| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
974| | id='acb35fb7-aab8-450e-bcdc-48c4cf4eb46e', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
975| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950796', updated_at='2024-09-25T09:51:48Z' |
976| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
977| | id='bb6397ee-725f-4957-8575-18526dc59bf0', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950655', |
978| | updated_at='2024-09-25T09:51:47Z' |
979| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
980| | id='ea6b26af-78f3-4ece-8b65-fc8a0deaa845', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
981| | standard_attr_id='4950658', updated_at='2024-09-25T09:51:47Z' |
982| shared | False |
983| stateful | True |
984| tags | [] |
985| updated_at | 2024-09-25T09:51:49Z |
986+-----------------+-------------------------------------------------------------------------------------------------------------------------+
987wmcs-openstack security group delete 292cdfd5-9ba3-488e-bbf0-2a60439340c1
988sg: 29973d17-1e89-4ce8-935a-091664a0da07 project: f93ed978bc5943c4b9c3fb1bfc70d3b4
989delete sg 29973d17-1e89-4ce8-935a-091664a0da07 because project f93ed978bc5943c4b9c3fb1bfc70d3b4 doesn't exists
990+-----------------+-------------------------------------------------------------------------------------------------------------------------+
991| Field | Value |
992+-----------------+-------------------------------------------------------------------------------------------------------------------------+
993| created_at | 2024-09-06T17:48:52Z |
994| description | Default security group |
995| id | 29973d17-1e89-4ce8-935a-091664a0da07 |
996| name | default |
997| project_id | f93ed978bc5943c4b9c3fb1bfc70d3b4 |
998| revision_number | 6 |
999| rules | belongs_to_default_sg='True', created_at='2024-09-06T17:48:53Z', direction='ingress', ethertype='IPv4', |
1000| | id='04c4c77f-ab04-43b9-9497-fc560eb1033e', port_range_max='22', port_range_min='22', protocol='tcp', |
1001| | remote_group_id='29973d17-1e89-4ce8-935a-091664a0da07', standard_attr_id='4940536', updated_at='2024-09-06T17:48:53Z' |
1002| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:52Z', direction='ingress', ethertype='IPv6', |
1003| | id='4bcbc886-89c6-487a-822a-cee6b204f0a6', remote_group_id='29973d17-1e89-4ce8-935a-091664a0da07', |
1004| | standard_attr_id='4940524', updated_at='2024-09-06T17:48:52Z' |
1005| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:52Z', direction='ingress', ethertype='IPv4', |
1006| | id='4ca0af91-b728-4b69-8c2e-455c86be76c9', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1007| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4940533', updated_at='2024-09-06T17:48:52Z' |
1008| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:52Z', direction='ingress', ethertype='IPv4', |
1009| | id='4e3c5fd6-449e-46e7-8d32-37a9534a3acc', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1010| | standard_attr_id='4940530', updated_at='2024-09-06T17:48:52Z' |
1011| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:52Z', direction='egress', ethertype='IPv6', id='6e8554cb- |
1012| | eea4-4cb2-b9a0-bafde8f446ad', standard_attr_id='4940521', updated_at='2024-09-06T17:48:52Z' |
1013| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:52Z', direction='ingress', ethertype='IPv4', |
1014| | id='92b0ef62-ab79-4ef6-9fef-ecd3cb442b0b', remote_group_id='29973d17-1e89-4ce8-935a-091664a0da07', |
1015| | standard_attr_id='4940518', updated_at='2024-09-06T17:48:52Z' |
1016| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:52Z', direction='egress', ethertype='IPv4', |
1017| | id='931b787f-638d-434f-91e5-50682b483198', standard_attr_id='4940527', updated_at='2024-09-06T17:48:52Z' |
1018| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:53Z', direction='ingress', ethertype='IPv4', |
1019| | id='c8116019-0381-4660-b948-15f668358c58', protocol='icmp', remote_group_id='29973d17-1e89-4ce8-935a-091664a0da07', |
1020| | standard_attr_id='4940542', updated_at='2024-09-06T17:48:53Z' |
1021| | belongs_to_default_sg='True', created_at='2024-09-06T17:48:53Z', direction='ingress', ethertype='IPv4', |
1022| | id='d1ebdc5c-3577-4fdd-97fa-712ee76a2756', protocol='udp', remote_group_id='29973d17-1e89-4ce8-935a-091664a0da07', |
1023| | standard_attr_id='4940539', updated_at='2024-09-06T17:48:53Z' |
1024| shared | False |
1025| stateful | True |
1026| tags | [] |
1027| updated_at | 2024-09-06T17:48:53Z |
1028+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1029wmcs-openstack security group delete 29973d17-1e89-4ce8-935a-091664a0da07
1030sg: 2ae25e6d-95d2-4acc-b668-ac87c7bcd8df project: cloudinfra-codfw1dev
1031sg: 2c0201e8-9ece-45cd-a8b7-48084fc6970a project: andrewismortalhere
1032delete sg 2c0201e8-9ece-45cd-a8b7-48084fc6970a because project andrewismortalhere doesn't exists
1033+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1034| Field | Value |
1035+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1036| created_at | 2021-02-10T16:49:20Z |
1037| description | Default security group |
1038| id | 2c0201e8-9ece-45cd-a8b7-48084fc6970a |
1039| name | default |
1040| project_id | andrewismortalhere |
1041| revision_number | 6 |
1042| rules | belongs_to_default_sg='True', created_at='2021-02-10T16:49:20Z', direction='egress', ethertype='IPv6', |
1043| | id='131e5abd-d71b-41bf-9ef3-e7421dd18693', standard_attr_id='2803', updated_at='2021-02-10T16:49:20Z' |
1044| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:20Z', direction='ingress', ethertype='IPv6', |
1045| | id='3608d5f7-96fc-4795-b962-b8e3f2ac46d4', remote_group_id='2c0201e8-9ece-45cd-a8b7-48084fc6970a', |
1046| | standard_attr_id='2800', updated_at='2021-02-10T16:49:20Z' |
1047| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:20Z', direction='ingress', ethertype='IPv4', |
1048| | id='61e6e693-971f-4614-b5a7-6adbff53b8db', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1049| | standard_attr_id='2806', updated_at='2021-02-10T16:49:20Z' |
1050| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:20Z', direction='ingress', ethertype='IPv4', |
1051| | id='7c3e517f-7961-46f1-8af7-8272e637a068', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1052| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='2809', updated_at='2021-02-10T16:49:20Z' |
1053| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:21Z', direction='ingress', ethertype='IPv4', |
1054| | id='91dbc58c-a31f-494b-b7a7-caeb8df61b4c', port_range_max='65535', port_range_min='1', protocol='udp', |
1055| | remote_group_id='2c0201e8-9ece-45cd-a8b7-48084fc6970a', standard_attr_id='2815', updated_at='2021-02-10T16:49:21Z' |
1056| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:20Z', direction='egress', ethertype='IPv4', |
1057| | id='947c5308-bea0-427c-a3ac-22c98875418d', standard_attr_id='2797', updated_at='2021-02-10T16:49:20Z' |
1058| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:21Z', direction='ingress', ethertype='IPv4', |
1059| | id='cf554e83-d175-4a5e-9957-d2d92392f95c', protocol='icmp', remote_group_id='2c0201e8-9ece-45cd-a8b7-48084fc6970a', |
1060| | standard_attr_id='2818', updated_at='2021-02-10T16:49:21Z' |
1061| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:20Z', direction='ingress', ethertype='IPv4', |
1062| | id='ea05166a-972b-4dc1-8802-26ce595745f2', port_range_max='22', port_range_min='22', protocol='tcp', |
1063| | remote_group_id='2c0201e8-9ece-45cd-a8b7-48084fc6970a', standard_attr_id='2812', updated_at='2021-02-10T16:49:20Z' |
1064| | belongs_to_default_sg='True', created_at='2021-02-10T16:49:20Z', direction='ingress', ethertype='IPv4', |
1065| | id='ebe7935c-81b9-45e3-805c-65e1a9040a1d', remote_group_id='2c0201e8-9ece-45cd-a8b7-48084fc6970a', |
1066| | standard_attr_id='2794', updated_at='2021-02-10T16:49:20Z' |
1067| shared | False |
1068| stateful | True |
1069| tags | [] |
1070| updated_at | 2021-02-10T16:49:21Z |
1071+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1072wmcs-openstack security group delete 2c0201e8-9ece-45cd-a8b7-48084fc6970a
1073sg: 2d27aa85-9d6a-4e18-9298-d36137f27339 project: devproject19
1074delete sg 2d27aa85-9d6a-4e18-9298-d36137f27339 because project devproject19 doesn't exists
1075+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1076| Field | Value |
1077+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1078| created_at | 2019-05-20T17:15:36Z |
1079| description | Default security group |
1080| id | 2d27aa85-9d6a-4e18-9298-d36137f27339 |
1081| name | default |
1082| project_id | devproject19 |
1083| revision_number | 0 |
1084| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:15:36Z', direction='ingress', ethertype='IPv4', |
1085| | id='31bdfc53-317b-4b72-a776-9aaca8b6a659', remote_group_id='2d27aa85-9d6a-4e18-9298-d36137f27339', |
1086| | standard_attr_id='451', updated_at='2019-05-20T17:15:36Z' |
1087| | belongs_to_default_sg='True', created_at='2019-05-20T17:15:36Z', direction='egress', ethertype='IPv6', |
1088| | id='7804fd3d-9a36-444c-b2d6-765873bb53c4', standard_attr_id='454', updated_at='2019-05-20T17:15:36Z' |
1089| | belongs_to_default_sg='True', created_at='2019-05-20T17:15:36Z', direction='ingress', ethertype='IPv6', |
1090| | id='a7725975-cc35-4bf6-9fa8-b8c4f5f01a63', remote_group_id='2d27aa85-9d6a-4e18-9298-d36137f27339', |
1091| | standard_attr_id='453', updated_at='2019-05-20T17:15:36Z' |
1092| | belongs_to_default_sg='True', created_at='2019-05-20T17:15:36Z', direction='egress', ethertype='IPv4', |
1093| | id='f7108ec2-ec9e-4018-b741-1c084d33e211', standard_attr_id='452', updated_at='2019-05-20T17:15:36Z' |
1094| shared | False |
1095| stateful | True |
1096| tags | [] |
1097| updated_at | 2019-05-20T17:15:36Z |
1098+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1099wmcs-openstack security group delete 2d27aa85-9d6a-4e18-9298-d36137f27339
1100sg: 2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394 project: cinderprojecttest
1101delete sg 2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394 because project cinderprojecttest doesn't exists
1102+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1103| Field | Value |
1104+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1105| created_at | 2020-12-11T20:10:16Z |
1106| description | Default security group |
1107| id | 2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394 |
1108| name | default |
1109| project_id | cinderprojecttest |
1110| revision_number | 6 |
1111| rules | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='ingress', ethertype='IPv4', |
1112| | id='17a2e991-8920-48b9-ae6a-8e70455f8d97', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1113| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='2164', updated_at='2020-12-11T20:10:16Z' |
1114| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='ingress', ethertype='IPv4', |
1115| | id='22552fd7-2b26-499d-833e-f2b6ad8acd59', port_range_max='22', port_range_min='22', protocol='tcp', |
1116| | remote_group_id='2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394', standard_attr_id='2167', updated_at='2020-12-11T20:10:16Z' |
1117| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='egress', ethertype='IPv6', |
1118| | id='22c23f86-0943-4abd-aa3b-fc9a8d374f4e', standard_attr_id='2158', updated_at='2020-12-11T20:10:16Z' |
1119| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='ingress', ethertype='IPv4', |
1120| | id='489c0d6e-f2b3-442f-a6b8-886633b2a6e1', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1121| | standard_attr_id='2161', updated_at='2020-12-11T20:10:16Z' |
1122| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='egress', ethertype='IPv4', |
1123| | id='79e9dc9f-7535-40e0-9944-bdee3dc57c7e', standard_attr_id='2152', updated_at='2020-12-11T20:10:16Z' |
1124| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='ingress', ethertype='IPv4', |
1125| | id='7d3873f6-d008-4ee7-8ab8-6d953c5e2945', remote_group_id='2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394', |
1126| | standard_attr_id='2149', updated_at='2020-12-11T20:10:16Z' |
1127| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='ingress', ethertype='IPv4', |
1128| | id='a167ac63-f300-4b22-85ee-152e1f6f9345', port_range_max='65535', port_range_min='1', protocol='udp', |
1129| | remote_group_id='2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394', standard_attr_id='2170', updated_at='2020-12-11T20:10:16Z' |
1130| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='ingress', ethertype='IPv6', |
1131| | id='dd680a5c-5989-4c29-ae6a-37a7db3f12cc', remote_group_id='2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394', |
1132| | standard_attr_id='2155', updated_at='2020-12-11T20:10:16Z' |
1133| | belongs_to_default_sg='True', created_at='2020-12-11T20:10:16Z', direction='ingress', ethertype='IPv4', |
1134| | id='de5f25c3-e216-42aa-a69b-4ef294dfd9c4', protocol='icmp', remote_group_id='2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394', |
1135| | standard_attr_id='2173', updated_at='2020-12-11T20:10:16Z' |
1136| shared | False |
1137| stateful | True |
1138| tags | [] |
1139| updated_at | 2020-12-11T20:10:16Z |
1140+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1141wmcs-openstack security group delete 2d4e6d45-dbe9-4dfa-bf1a-6efadfe2e394
1142sg: 2df6e79a-2a32-46b9-b749-1eb30afc9d5b project: cloudinfra-codfw1dev
1143sg: 2ef1de91-8fdf-4408-9e18-0009376ad80b project: haproject
1144delete sg 2ef1de91-8fdf-4408-9e18-0009376ad80b because project haproject doesn't exists
1145+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1146| Field | Value |
1147+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1148| created_at | 2019-05-20T18:10:38Z |
1149| description | Default security group |
1150| id | 2ef1de91-8fdf-4408-9e18-0009376ad80b |
1151| name | default |
1152| project_id | haproject |
1153| revision_number | 0 |
1154| rules | belongs_to_default_sg='True', created_at='2019-05-20T18:10:39Z', direction='ingress', ethertype='IPv4', |
1155| | id='1ca46447-2d75-4458-a754-db4bc12914a3', port_range_max='65535', port_range_min='1', protocol='udp', |
1156| | remote_group_id='2ef1de91-8fdf-4408-9e18-0009376ad80b', standard_attr_id='532', updated_at='2019-05-20T18:10:39Z' |
1157| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:38Z', direction='egress', ethertype='IPv4', |
1158| | id='2ec3fe05-12b9-481c-9568-5dcdcb63245e', standard_attr_id='526', updated_at='2019-05-20T18:10:38Z' |
1159| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:38Z', direction='egress', ethertype='IPv6', |
1160| | id='3ce78722-0dc5-4e3a-976e-5eec3b465e8f', standard_attr_id='528', updated_at='2019-05-20T18:10:38Z' |
1161| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:39Z', direction='ingress', ethertype='IPv4', |
1162| | id='742a1c8d-eef5-4275-b4c3-d53e29a54c47', port_range_max='22', port_range_min='22', protocol='tcp', |
1163| | remote_group_id='2ef1de91-8fdf-4408-9e18-0009376ad80b', standard_attr_id='531', updated_at='2019-05-20T18:10:39Z' |
1164| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:38Z', direction='ingress', ethertype='IPv4', |
1165| | id='7646ded6-672b-440b-b4cb-3ae93826b073', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1166| | standard_attr_id='529', updated_at='2019-05-20T18:10:38Z' |
1167| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:40Z', direction='ingress', ethertype='IPv4', |
1168| | id='85981200-faa2-4359-9728-db31cd4a2f98', protocol='icmp', remote_group_id='2ef1de91-8fdf-4408-9e18-0009376ad80b', |
1169| | standard_attr_id='533', updated_at='2019-05-20T18:10:40Z' |
1170| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:39Z', direction='ingress', ethertype='IPv4', |
1171| | id='8faf1860-708d-4d0b-9c40-43e6943a6479', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
1172| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='530', updated_at='2019-05-20T18:10:39Z' |
1173| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:38Z', direction='ingress', ethertype='IPv4', |
1174| | id='c0371cca-f1b0-4817-8a18-918cc5b0b38c', remote_group_id='2ef1de91-8fdf-4408-9e18-0009376ad80b', |
1175| | standard_attr_id='525', updated_at='2019-05-20T18:10:38Z' |
1176| | belongs_to_default_sg='True', created_at='2019-05-20T18:10:38Z', direction='ingress', ethertype='IPv6', |
1177| | id='fb9070c1-c297-4ce7-a013-6b779548d9ee', remote_group_id='2ef1de91-8fdf-4408-9e18-0009376ad80b', |
1178| | standard_attr_id='527', updated_at='2019-05-20T18:10:38Z' |
1179| shared | False |
1180| stateful | True |
1181| tags | [] |
1182| updated_at | 2019-05-20T18:10:38Z |
1183+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1184wmcs-openstack security group delete 2ef1de91-8fdf-4408-9e18-0009376ad80b
1185sg: 2ff1c2f7-39e8-49e3-a7ea-032e5e46aaa7 project: trove
1186sg: 302f048b-bccb-4402-9382-956b43be0832 project: ocata-test-112
1187delete sg 302f048b-bccb-4402-9382-956b43be0832 because project ocata-test-112 doesn't exists
1188+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1189| Field | Value |
1190+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1191| created_at | 2019-12-03T13:38:07Z |
1192| description | Default security group |
1193| id | 302f048b-bccb-4402-9382-956b43be0832 |
1194| name | default |
1195| project_id | ocata-test-112 |
1196| revision_number | 6 |
1197| rules | belongs_to_default_sg='True', created_at='2019-12-03T13:38:07Z', direction='egress', ethertype='IPv6', |
1198| | id='275bcbee-4ad7-4f60-8334-6784bef80017', revision_number='1', standard_attr_id='858', |
1199| | updated_at='2019-12-03T13:38:07Z' |
1200| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:07Z', direction='egress', ethertype='IPv4', |
1201| | id='3bfc1dba-2642-4b77-9ad8-d9ebfd57c4bc', revision_number='1', standard_attr_id='856', |
1202| | updated_at='2019-12-03T13:38:07Z' |
1203| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:08Z', direction='ingress', ethertype='IPv4', |
1204| | id='51ef057e-21e3-4e19-b69b-af324fff813d', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
1205| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='860', |
1206| | updated_at='2019-12-03T13:38:08Z' |
1207| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:07Z', direction='ingress', ethertype='IPv6', |
1208| | id='548cf0e8-ffdb-4bbc-8ff5-4b695c973ec8', remote_group_id='302f048b-bccb-4402-9382-956b43be0832', revision_number='1', |
1209| | standard_attr_id='857', updated_at='2019-12-03T13:38:07Z' |
1210| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:09Z', direction='ingress', ethertype='IPv4', |
1211| | id='5b2f1d2a-0ee4-499b-9dfa-7ea5f4f3a7af', port_range_max='65535', port_range_min='1', protocol='udp', |
1212| | remote_group_id='302f048b-bccb-4402-9382-956b43be0832', revision_number='1', standard_attr_id='862', |
1213| | updated_at='2019-12-03T13:38:09Z' |
1214| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:07Z', direction='ingress', ethertype='IPv4', |
1215| | id='711e87ad-29e4-41e7-a96f-2f8379e97379', remote_group_id='302f048b-bccb-4402-9382-956b43be0832', revision_number='1', |
1216| | standard_attr_id='855', updated_at='2019-12-03T13:38:07Z' |
1217| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:10Z', direction='ingress', ethertype='IPv4', |
1218| | id='bd358ff2-8d86-4463-bbda-9a00029660ac', protocol='icmp', remote_group_id='302f048b-bccb-4402-9382-956b43be0832', |
1219| | revision_number='1', standard_attr_id='863', updated_at='2019-12-03T13:38:10Z' |
1220| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:09Z', direction='ingress', ethertype='IPv4', |
1221| | id='e4de62d0-223f-41ab-9b0c-e093a8d66356', port_range_max='22', port_range_min='22', protocol='tcp', |
1222| | remote_group_id='302f048b-bccb-4402-9382-956b43be0832', revision_number='1', standard_attr_id='861', |
1223| | updated_at='2019-12-03T13:38:09Z' |
1224| | belongs_to_default_sg='True', created_at='2019-12-03T13:38:08Z', direction='ingress', ethertype='IPv4', |
1225| | id='ee576d1d-147e-4dff-88be-a4732170b268', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1226| | revision_number='1', standard_attr_id='859', updated_at='2019-12-03T13:38:08Z' |
1227| shared | False |
1228| stateful | True |
1229| tags | [] |
1230| updated_at | 2019-12-03T13:38:10Z |
1231+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1232wmcs-openstack security group delete 302f048b-bccb-4402-9382-956b43be0832
1233sg: 3157846e-394c-4fe3-8230-9e96343a9325 project: ussuriprojecttest15
1234delete sg 3157846e-394c-4fe3-8230-9e96343a9325 because project ussuriprojecttest15 doesn't exists
1235+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1236| Field | Value |
1237+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1238| created_at | 2021-04-07T14:51:16Z |
1239| description | Default security group |
1240| id | 3157846e-394c-4fe3-8230-9e96343a9325 |
1241| name | default |
1242| project_id | ussuriprojecttest15 |
1243| revision_number | 6 |
1244| rules | belongs_to_default_sg='True', created_at='2021-04-07T14:51:16Z', direction='ingress', ethertype='IPv4', |
1245| | id='2f50c1f5-ec35-44d2-bc65-b00f1ccb4bca', remote_group_id='3157846e-394c-4fe3-8230-9e96343a9325', |
1246| | standard_attr_id='3993', updated_at='2021-04-07T14:51:16Z' |
1247| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:16Z', direction='ingress', ethertype='IPv4', |
1248| | id='59274de9-fe73-468d-947e-6b81e96fa448', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1249| | standard_attr_id='4005', updated_at='2021-04-07T14:51:16Z' |
1250| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:17Z', direction='ingress', ethertype='IPv4', |
1251| | id='9dc6c2c4-1c6b-43fa-9e4d-0d4c449a661f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1252| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4008', updated_at='2021-04-07T14:51:17Z' |
1253| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:17Z', direction='ingress', ethertype='IPv4', |
1254| | id='a0d3d29c-1640-4231-986f-9a85612fc6aa', protocol='icmp', remote_group_id='3157846e-394c-4fe3-8230-9e96343a9325', |
1255| | standard_attr_id='4017', updated_at='2021-04-07T14:51:17Z' |
1256| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:16Z', direction='egress', ethertype='IPv4', id='aa4c5bef- |
1257| | ba94-4db9-aa15-61045fc2e16d', standard_attr_id='3996', updated_at='2021-04-07T14:51:16Z' |
1258| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:16Z', direction='ingress', ethertype='IPv6', |
1259| | id='b26fc0a5-88ad-44f4-8e40-1d02ce1b8ecb', remote_group_id='3157846e-394c-4fe3-8230-9e96343a9325', |
1260| | standard_attr_id='3999', updated_at='2021-04-07T14:51:16Z' |
1261| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:17Z', direction='ingress', ethertype='IPv4', |
1262| | id='dfbc9561-d0c8-4e50-ad40-4849c365c111', protocol='udp', remote_group_id='3157846e-394c-4fe3-8230-9e96343a9325', |
1263| | standard_attr_id='4014', updated_at='2021-04-07T14:51:17Z' |
1264| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:17Z', direction='ingress', ethertype='IPv4', |
1265| | id='f3f8ce59-bdeb-4e84-b429-68448a4f4609', port_range_max='22', port_range_min='22', protocol='tcp', |
1266| | remote_group_id='3157846e-394c-4fe3-8230-9e96343a9325', standard_attr_id='4011', updated_at='2021-04-07T14:51:17Z' |
1267| | belongs_to_default_sg='True', created_at='2021-04-07T14:51:16Z', direction='egress', ethertype='IPv6', |
1268| | id='fb3d97e3-b130-4695-94dd-4c4abba226e8', standard_attr_id='4002', updated_at='2021-04-07T14:51:16Z' |
1269| shared | False |
1270| stateful | True |
1271| tags | [] |
1272| updated_at | 2021-04-07T14:51:17Z |
1273+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1274wmcs-openstack security group delete 3157846e-394c-4fe3-8230-9e96343a9325
1275sg: 32f1e588-49d0-480b-81a7-a2fcc8936825 project: ussuriprojecttest6
1276delete sg 32f1e588-49d0-480b-81a7-a2fcc8936825 because project ussuriprojecttest6 doesn't exists
1277+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1278| Field | Value |
1279+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1280| created_at | 2021-04-07T11:53:52Z |
1281| description | Default security group |
1282| id | 32f1e588-49d0-480b-81a7-a2fcc8936825 |
1283| name | default |
1284| project_id | ussuriprojecttest6 |
1285| revision_number | 6 |
1286| rules | belongs_to_default_sg='True', created_at='2021-04-07T11:53:52Z', direction='egress', ethertype='IPv4', |
1287| | id='19b871e4-583f-485a-91be-54e95ea55fa7', standard_attr_id='3726', updated_at='2021-04-07T11:53:52Z' |
1288| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:53Z', direction='ingress', ethertype='IPv4', |
1289| | id='1f6dbaea-2b0e-4ceb-8ea3-3c929404b2e5', protocol='udp', remote_group_id='32f1e588-49d0-480b-81a7-a2fcc8936825', |
1290| | standard_attr_id='3744', updated_at='2021-04-07T11:53:53Z' |
1291| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:52Z', direction='egress', ethertype='IPv6', |
1292| | id='48aee2d5-2d12-4b8b-812f-f9e558559c39', standard_attr_id='3732', updated_at='2021-04-07T11:53:52Z' |
1293| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:53Z', direction='ingress', ethertype='IPv4', |
1294| | id='af1e6303-2125-492c-a6dd-a1e718f8da93', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1295| | standard_attr_id='3735', updated_at='2021-04-07T11:53:53Z' |
1296| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:53Z', direction='ingress', ethertype='IPv4', |
1297| | id='b1551945-b035-4629-93cd-f37744a84ab1', port_range_max='22', port_range_min='22', protocol='tcp', |
1298| | remote_group_id='32f1e588-49d0-480b-81a7-a2fcc8936825', standard_attr_id='3741', updated_at='2021-04-07T11:53:53Z' |
1299| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:53Z', direction='ingress', ethertype='IPv4', |
1300| | id='d25b1171-9e3a-4fac-a98a-a497805ab5c2', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1301| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3738', updated_at='2021-04-07T11:53:53Z' |
1302| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:52Z', direction='ingress', ethertype='IPv6', |
1303| | id='e45320d1-e0f6-48c9-a4a7-fd295a0a33c5', remote_group_id='32f1e588-49d0-480b-81a7-a2fcc8936825', |
1304| | standard_attr_id='3729', updated_at='2021-04-07T11:53:52Z' |
1305| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:53Z', direction='ingress', ethertype='IPv4', |
1306| | id='e6783438-8096-439a-82aa-a952f96173a4', protocol='icmp', remote_group_id='32f1e588-49d0-480b-81a7-a2fcc8936825', |
1307| | standard_attr_id='3747', updated_at='2021-04-07T11:53:53Z' |
1308| | belongs_to_default_sg='True', created_at='2021-04-07T11:53:52Z', direction='ingress', ethertype='IPv4', |
1309| | id='e8f0fb5b-ca59-48aa-96e6-361d8821fa2c', remote_group_id='32f1e588-49d0-480b-81a7-a2fcc8936825', |
1310| | standard_attr_id='3723', updated_at='2021-04-07T11:53:52Z' |
1311| shared | False |
1312| stateful | True |
1313| tags | [] |
1314| updated_at | 2021-04-07T11:53:53Z |
1315+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1316wmcs-openstack security group delete 32f1e588-49d0-480b-81a7-a2fcc8936825
1317sg: 3477d11b-658a-49c7-b57f-460c1791031d project: secgrouptest3
1318delete sg 3477d11b-658a-49c7-b57f-460c1791031d because project secgrouptest3 doesn't exists
1319+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1320| Field | Value |
1321+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1322| created_at | 2021-05-17T19:42:32Z |
1323| description | Default security group |
1324| id | 3477d11b-658a-49c7-b57f-460c1791031d |
1325| name | default |
1326| project_id | secgrouptest3 |
1327| revision_number | 6 |
1328| rules | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='egress', ethertype='IPv6', |
1329| | id='21de6977-dbe0-4901-bda9-96c429f8ffaf', standard_attr_id='6812', updated_at='2021-05-17T19:42:32Z' |
1330| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='ingress', ethertype='IPv4', |
1331| | id='3ce5ddee-5e5e-4600-b1aa-c9f6cd01e0c3', port_range_max='22', port_range_min='22', protocol='tcp', |
1332| | remote_group_id='3477d11b-658a-49c7-b57f-460c1791031d', standard_attr_id='6821', updated_at='2021-05-17T19:42:32Z' |
1333| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='ingress', ethertype='IPv4', |
1334| | id='70d19beb-622f-4e1a-873e-63220f64af08', protocol='udp', remote_group_id='3477d11b-658a-49c7-b57f-460c1791031d', |
1335| | standard_attr_id='6824', updated_at='2021-05-17T19:42:32Z' |
1336| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='ingress', ethertype='IPv4', |
1337| | id='8475b272-7731-4cda-a5af-751b0d074000', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1338| | standard_attr_id='6815', updated_at='2021-05-17T19:42:32Z' |
1339| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='egress', ethertype='IPv4', |
1340| | id='99d29f9b-4611-41ac-a6b5-2594537afd37', standard_attr_id='6806', updated_at='2021-05-17T19:42:32Z' |
1341| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:33Z', direction='ingress', ethertype='IPv4', |
1342| | id='a433dd5c-0291-48d7-bf3b-74212f17d445', protocol='icmp', remote_group_id='3477d11b-658a-49c7-b57f-460c1791031d', |
1343| | standard_attr_id='6827', updated_at='2021-05-17T19:42:33Z' |
1344| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='ingress', ethertype='IPv6', |
1345| | id='a9b9cf90-93ed-4d40-888b-d3ba7622d8d1', remote_group_id='3477d11b-658a-49c7-b57f-460c1791031d', |
1346| | standard_attr_id='6809', updated_at='2021-05-17T19:42:32Z' |
1347| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='ingress', ethertype='IPv4', |
1348| | id='bef2306f-f955-4ab2-9067-ef82ecf71b29', remote_group_id='3477d11b-658a-49c7-b57f-460c1791031d', |
1349| | standard_attr_id='6803', updated_at='2021-05-17T19:42:32Z' |
1350| | belongs_to_default_sg='True', created_at='2021-05-17T19:42:32Z', direction='ingress', ethertype='IPv4', |
1351| | id='e8c1351f-2b01-48c0-bc14-d70d95af03b8', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1352| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='6818', updated_at='2021-05-17T19:42:32Z' |
1353| shared | False |
1354| stateful | True |
1355| tags | [] |
1356| updated_at | 2021-05-17T19:42:33Z |
1357+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1358wmcs-openstack security group delete 3477d11b-658a-49c7-b57f-460c1791031d
1359sg: 36d9d323-093e-4669-a79c-33ca7bafcc58 project: ussuriprojecttest10
1360delete sg 36d9d323-093e-4669-a79c-33ca7bafcc58 because project ussuriprojecttest10 doesn't exists
1361+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1362| Field | Value |
1363+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1364| created_at | 2021-04-07T12:23:04Z |
1365| description | Default security group |
1366| id | 36d9d323-093e-4669-a79c-33ca7bafcc58 |
1367| name | default |
1368| project_id | ussuriprojecttest10 |
1369| revision_number | 6 |
1370| rules | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='ingress', ethertype='IPv4', |
1371| | id='1d4e17f3-d955-4aa1-a5d6-86aca093e623', port_range_max='22', port_range_min='22', protocol='tcp', |
1372| | remote_group_id='36d9d323-093e-4669-a79c-33ca7bafcc58', standard_attr_id='3861', updated_at='2021-04-07T12:23:04Z' |
1373| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='ingress', ethertype='IPv4', |
1374| | id='26761ebf-981b-4a07-a1f2-1aaf9e817339', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1375| | standard_attr_id='3855', updated_at='2021-04-07T12:23:04Z' |
1376| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='ingress', ethertype='IPv4', |
1377| | id='298f354e-dcb0-4fd7-8948-add7f1c8dcda', remote_group_id='36d9d323-093e-4669-a79c-33ca7bafcc58', |
1378| | standard_attr_id='3843', updated_at='2021-04-07T12:23:04Z' |
1379| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='egress', ethertype='IPv6', |
1380| | id='630ab9c0-5fab-4f05-8491-2282e78d1a03', standard_attr_id='3852', updated_at='2021-04-07T12:23:04Z' |
1381| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:05Z', direction='ingress', ethertype='IPv4', |
1382| | id='646a84a4-13ec-4f7f-a455-7a5fd0a36549', protocol='icmp', remote_group_id='36d9d323-093e-4669-a79c-33ca7bafcc58', |
1383| | standard_attr_id='3867', updated_at='2021-04-07T12:23:05Z' |
1384| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='ingress', ethertype='IPv4', |
1385| | id='6a20b41d-6411-4491-bab2-b5cb9213dbca', protocol='udp', remote_group_id='36d9d323-093e-4669-a79c-33ca7bafcc58', |
1386| | standard_attr_id='3864', updated_at='2021-04-07T12:23:04Z' |
1387| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='ingress', ethertype='IPv6', |
1388| | id='d0506941-363c-407b-96df-3586177395f1', remote_group_id='36d9d323-093e-4669-a79c-33ca7bafcc58', |
1389| | standard_attr_id='3849', updated_at='2021-04-07T12:23:04Z' |
1390| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='egress', ethertype='IPv4', |
1391| | id='d27ca25e-cee5-4ab7-81f8-bf76bac99bbc', standard_attr_id='3846', updated_at='2021-04-07T12:23:04Z' |
1392| | belongs_to_default_sg='True', created_at='2021-04-07T12:23:04Z', direction='ingress', ethertype='IPv4', |
1393| | id='db6169a5-2c12-4c3b-b446-ab0bbd42611e', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1394| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3858', updated_at='2021-04-07T12:23:04Z' |
1395| shared | False |
1396| stateful | True |
1397| tags | [] |
1398| updated_at | 2021-04-07T12:23:05Z |
1399+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1400wmcs-openstack security group delete 36d9d323-093e-4669-a79c-33ca7bafcc58
1401sg: 379422f6-1acf-4fc8-bd5d-17d6da3ba1b6 project: thiscontains^&invlaid*@#$chars\/Ihope
1402delete sg 379422f6-1acf-4fc8-bd5d-17d6da3ba1b6 because project thiscontains^&invlaid*@#$chars\/Ihope doesn't exists
1403+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1404| Field | Value |
1405+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1406| created_at | 2023-07-11T16:46:19Z |
1407| description | Default security group |
1408| id | 379422f6-1acf-4fc8-bd5d-17d6da3ba1b6 |
1409| name | default |
1410| project_id | thiscontains^&invlaid*@#$chars\/Ihope |
1411| revision_number | 6 |
1412| rules | belongs_to_default_sg='True', created_at='2023-07-11T16:46:19Z', direction='ingress', ethertype='IPv4', |
1413| | id='047db33d-7149-4ab6-84f4-073ced906c6f', remote_group_id='379422f6-1acf-4fc8-bd5d-17d6da3ba1b6', |
1414| | standard_attr_id='4793774', updated_at='2023-07-11T16:46:19Z' |
1415| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:20Z', direction='ingress', ethertype='IPv4', |
1416| | id='3d7e1023-f930-48a2-b525-40d1eddf5b5d', protocol='icmp', remote_group_id='379422f6-1acf-4fc8-bd5d-17d6da3ba1b6', |
1417| | standard_attr_id='4793793', updated_at='2023-07-11T16:46:20Z' |
1418| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:20Z', direction='ingress', ethertype='IPv4', |
1419| | id='409f2200-2e4f-4e6a-8a59-195ba89b46f2', port_range_max='22', port_range_min='22', protocol='tcp', |
1420| | remote_group_id='379422f6-1acf-4fc8-bd5d-17d6da3ba1b6', standard_attr_id='4793790', updated_at='2023-07-11T16:46:20Z' |
1421| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:20Z', direction='ingress', ethertype='IPv4', |
1422| | id='46074163-5eef-46cf-a866-79f0476825be', protocol='udp', remote_group_id='379422f6-1acf-4fc8-bd5d-17d6da3ba1b6', |
1423| | standard_attr_id='4793792', updated_at='2023-07-11T16:46:20Z' |
1424| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:20Z', direction='ingress', ethertype='IPv4', |
1425| | id='c17caf4d-bd84-4566-a45a-fe014b0ed800', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1426| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4793788', updated_at='2023-07-11T16:46:20Z' |
1427| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:19Z', direction='ingress', ethertype='IPv4', |
1428| | id='ccf1c499-3319-405b-aefd-19633dc2049b', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1429| | standard_attr_id='4793786', updated_at='2023-07-11T16:46:19Z' |
1430| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:19Z', direction='egress', ethertype='IPv4', |
1431| | id='e508ae42-93b4-41f5-bab2-574ac15f3602', standard_attr_id='4793777', updated_at='2023-07-11T16:46:19Z' |
1432| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:19Z', direction='ingress', ethertype='IPv6', |
1433| | id='e5dbedf8-65e1-44a0-8f59-444ec26a8f2a', remote_group_id='379422f6-1acf-4fc8-bd5d-17d6da3ba1b6', |
1434| | standard_attr_id='4793780', updated_at='2023-07-11T16:46:19Z' |
1435| | belongs_to_default_sg='True', created_at='2023-07-11T16:46:19Z', direction='egress', ethertype='IPv6', |
1436| | id='f96bf1d4-99a4-4069-bca0-b68a7cd5d559', standard_attr_id='4793783', updated_at='2023-07-11T16:46:19Z' |
1437| shared | False |
1438| stateful | True |
1439| tags | [] |
1440| updated_at | 2023-07-11T16:46:20Z |
1441+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1442wmcs-openstack security group delete 379422f6-1acf-4fc8-bd5d-17d6da3ba1b6
1443sg: 382bc8e1-3932-4210-b60e-d7201dd52d99 project: trove
1444sg: 392a3a58-fe3e-4985-937a-4fb40d23f7bc project: admin
1445sg: 39aa41d1-0368-4d6d-a3af-e91332cf96de project: deletethisproject
1446delete sg 39aa41d1-0368-4d6d-a3af-e91332cf96de because project deletethisproject doesn't exists
1447+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1448| Field | Value |
1449+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1450| created_at | 2023-03-01T22:18:44Z |
1451| description | Default security group |
1452| id | 39aa41d1-0368-4d6d-a3af-e91332cf96de |
1453| name | default |
1454| project_id | deletethisproject |
1455| revision_number | 6 |
1456| rules | belongs_to_default_sg='True', created_at='2023-03-01T22:18:45Z', direction='ingress', ethertype='IPv4', |
1457| | id='10b9daf9-9941-4bcf-ad2e-253010e1058d', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1458| | standard_attr_id='4746462', updated_at='2023-03-01T22:18:45Z' |
1459| | belongs_to_default_sg='True', created_at='2023-03-01T22:20:45Z', direction='ingress', ethertype='IPv4', |
1460| | id='25d0e4ff-3a9f-477f-9c99-9ae87af173d2', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1461| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4746465', updated_at='2023-03-01T22:20:45Z' |
1462| | belongs_to_default_sg='True', created_at='2023-03-01T22:18:44Z', direction='ingress', ethertype='IPv6', |
1463| | id='4c8834d8-9eb1-442c-961b-67c34589e064', remote_group_id='39aa41d1-0368-4d6d-a3af-e91332cf96de', |
1464| | standard_attr_id='4746456', updated_at='2023-03-01T22:18:44Z' |
1465| | belongs_to_default_sg='True', created_at='2023-03-01T22:24:45Z', direction='ingress', ethertype='IPv4', |
1466| | id='5b2ad26e-7426-4faa-98e7-28e208adac0e', protocol='udp', remote_group_id='39aa41d1-0368-4d6d-a3af-e91332cf96de', |
1467| | standard_attr_id='4746471', updated_at='2023-03-01T22:24:45Z' |
1468| | belongs_to_default_sg='True', created_at='2023-03-01T22:22:45Z', direction='ingress', ethertype='IPv4', |
1469| | id='922191aa-a953-44ae-9e13-5046bf309f98', port_range_max='22', port_range_min='22', protocol='tcp', |
1470| | remote_group_id='39aa41d1-0368-4d6d-a3af-e91332cf96de', standard_attr_id='4746468', updated_at='2023-03-01T22:22:45Z' |
1471| | belongs_to_default_sg='True', created_at='2023-03-01T22:18:44Z', direction='ingress', ethertype='IPv4', |
1472| | id='a40b35ba-829a-4eee-b02c-c2cb2b4f44b8', remote_group_id='39aa41d1-0368-4d6d-a3af-e91332cf96de', |
1473| | standard_attr_id='4746450', updated_at='2023-03-01T22:18:44Z' |
1474| | belongs_to_default_sg='True', created_at='2023-03-01T22:18:44Z', direction='egress', ethertype='IPv4', |
1475| | id='baa7d84c-5b57-441d-81ab-2660c7331d14', standard_attr_id='4746453', updated_at='2023-03-01T22:18:44Z' |
1476| | belongs_to_default_sg='True', created_at='2024-05-08T19:27:58Z', direction='ingress', ethertype='IPv4', |
1477| | id='c1aa3ee9-6d5e-4fb7-b239-15404b90c070', protocol='icmp', remote_group_id='39aa41d1-0368-4d6d-a3af-e91332cf96de', |
1478| | standard_attr_id='4898155', updated_at='2024-05-08T19:27:58Z' |
1479| | belongs_to_default_sg='True', created_at='2023-03-01T22:18:44Z', direction='egress', ethertype='IPv6', |
1480| | id='cdab71a3-9eba-4dcb-a52d-0e507a7717b7', standard_attr_id='4746459', updated_at='2023-03-01T22:18:44Z' |
1481| shared | False |
1482| stateful | True |
1483| tags | [] |
1484| updated_at | 2024-05-08T19:27:58Z |
1485+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1486wmcs-openstack security group delete 39aa41d1-0368-4d6d-a3af-e91332cf96de
1487sg: 3a6f09a2-1e5e-485f-b6fb-20182c979bd4 project: newussuriproject
1488delete sg 3a6f09a2-1e5e-485f-b6fb-20182c979bd4 because project newussuriproject doesn't exists
1489+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1490| Field | Value |
1491+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1492| created_at | 2021-04-02T17:20:19Z |
1493| description | Default security group |
1494| id | 3a6f09a2-1e5e-485f-b6fb-20182c979bd4 |
1495| name | default |
1496| project_id | newussuriproject |
1497| revision_number | 6 |
1498| rules | belongs_to_default_sg='True', created_at='2021-04-02T17:20:20Z', direction='ingress', ethertype='IPv4', |
1499| | id='09d2f2e1-3de0-4a04-9c03-f6bfd2ba9dde', protocol='icmp', remote_group_id='3a6f09a2-1e5e-485f-b6fb-20182c979bd4', |
1500| | standard_attr_id='3588', updated_at='2021-04-02T17:20:20Z' |
1501| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:19Z', direction='ingress', ethertype='IPv4', |
1502| | id='0e04f748-fc14-475f-b71d-6590c04beb75', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1503| | standard_attr_id='3576', updated_at='2021-04-02T17:20:19Z' |
1504| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:20Z', direction='ingress', ethertype='IPv4', |
1505| | id='12dc4a69-5a4b-4cf1-a3f5-280e3e1a467b', port_range_max='22', port_range_min='22', protocol='tcp', |
1506| | remote_group_id='3a6f09a2-1e5e-485f-b6fb-20182c979bd4', standard_attr_id='3582', updated_at='2021-04-02T17:20:20Z' |
1507| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:19Z', direction='egress', ethertype='IPv4', |
1508| | id='29e0c93b-4789-41cf-bda4-396ced8f5f99', standard_attr_id='3567', updated_at='2021-04-02T17:20:19Z' |
1509| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:19Z', direction='egress', ethertype='IPv6', |
1510| | id='36b4748f-13e7-4d41-ab64-95837031d946', standard_attr_id='3573', updated_at='2021-04-02T17:20:19Z' |
1511| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:20Z', direction='ingress', ethertype='IPv4', |
1512| | id='660a1de0-5832-4f94-aa61-4e9614d80c6a', protocol='udp', remote_group_id='3a6f09a2-1e5e-485f-b6fb-20182c979bd4', |
1513| | standard_attr_id='3585', updated_at='2021-04-02T17:20:20Z' |
1514| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:19Z', direction='ingress', ethertype='IPv4', |
1515| | id='a3277878-d78e-4921-aac9-eda976ffaedf', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1516| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3579', updated_at='2021-04-02T17:20:19Z' |
1517| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:19Z', direction='ingress', ethertype='IPv6', |
1518| | id='cdc51cf8-e334-406a-9854-b176a91bdeee', remote_group_id='3a6f09a2-1e5e-485f-b6fb-20182c979bd4', |
1519| | standard_attr_id='3570', updated_at='2021-04-02T17:20:19Z' |
1520| | belongs_to_default_sg='True', created_at='2021-04-02T17:20:19Z', direction='ingress', ethertype='IPv4', |
1521| | id='e06f2c35-2ac5-40be-b87a-b240f00d0812', remote_group_id='3a6f09a2-1e5e-485f-b6fb-20182c979bd4', |
1522| | standard_attr_id='3564', updated_at='2021-04-02T17:20:19Z' |
1523| shared | False |
1524| stateful | True |
1525| tags | [] |
1526| updated_at | 2021-04-02T17:20:20Z |
1527+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1528wmcs-openstack security group delete 3a6f09a2-1e5e-485f-b6fb-20182c979bd4
1529sg: 3b8cd4e9-542d-4c2c-bd7e-9ac84a486876 project: not-url-safe
1530delete sg 3b8cd4e9-542d-4c2c-bd7e-9ac84a486876 because project not-url-safe doesn't exists
1531+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1532| Field | Value |
1533+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1534| created_at | 2024-05-31T20:48:15Z |
1535| description | Default security group |
1536| id | 3b8cd4e9-542d-4c2c-bd7e-9ac84a486876 |
1537| name | default |
1538| project_id | not-url-safe |
1539| revision_number | 6 |
1540| rules | belongs_to_default_sg='True', created_at='2024-05-31T20:48:15Z', direction='ingress', ethertype='IPv4', |
1541| | id='116199f7-02f1-45b5-a3e9-c016532e0963', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1542| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4906851', updated_at='2024-05-31T20:48:15Z' |
1543| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:15Z', direction='egress', ethertype='IPv4', |
1544| | id='39c4b05e-2207-45bc-835c-3d58a2164908', standard_attr_id='4906845', updated_at='2024-05-31T20:48:15Z' |
1545| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:15Z', direction='ingress', ethertype='IPv6', |
1546| | id='4c101e8b-e9c5-4776-828a-16c97efd4098', remote_group_id='3b8cd4e9-542d-4c2c-bd7e-9ac84a486876', |
1547| | standard_attr_id='4906842', updated_at='2024-05-31T20:48:15Z' |
1548| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:15Z', direction='egress', ethertype='IPv6', |
1549| | id='93773304-b40a-4150-9117-446a0899f852', standard_attr_id='4906839', updated_at='2024-05-31T20:48:15Z' |
1550| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:15Z', direction='ingress', ethertype='IPv4', |
1551| | id='957b2a6a-9bd9-4512-b7c4-51195e813833', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1552| | standard_attr_id='4906848', updated_at='2024-05-31T20:48:15Z' |
1553| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:15Z', direction='ingress', ethertype='IPv4', |
1554| | id='9c944d21-7971-49be-953a-d7a0caf84315', remote_group_id='3b8cd4e9-542d-4c2c-bd7e-9ac84a486876', |
1555| | standard_attr_id='4906836', updated_at='2024-05-31T20:48:15Z' |
1556| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:16Z', direction='ingress', ethertype='IPv4', |
1557| | id='ad3a0517-eb27-47c4-add4-eb6bab863c9f', protocol='udp', remote_group_id='3b8cd4e9-542d-4c2c-bd7e-9ac84a486876', |
1558| | standard_attr_id='4906857', updated_at='2024-05-31T20:48:16Z' |
1559| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:15Z', direction='ingress', ethertype='IPv4', |
1560| | id='dbe526ec-33c6-46ac-99f0-4d4c398f1ae2', port_range_max='22', port_range_min='22', protocol='tcp', |
1561| | remote_group_id='3b8cd4e9-542d-4c2c-bd7e-9ac84a486876', standard_attr_id='4906854', updated_at='2024-05-31T20:48:15Z' |
1562| | belongs_to_default_sg='True', created_at='2024-05-31T20:48:16Z', direction='ingress', ethertype='IPv4', |
1563| | id='febed4d7-9724-4ff1-94b8-377d280ae8ed', protocol='icmp', remote_group_id='3b8cd4e9-542d-4c2c-bd7e-9ac84a486876', |
1564| | standard_attr_id='4906860', updated_at='2024-05-31T20:48:16Z' |
1565| shared | False |
1566| stateful | True |
1567| tags | [] |
1568| updated_at | 2024-05-31T20:48:16Z |
1569+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1570wmcs-openstack security group delete 3b8cd4e9-542d-4c2c-bd7e-9ac84a486876
1571sg: 3de9d5a8-7060-4ff0-8c01-88222de535a7 project: dfbb805d2871471481ed17fb3d83462b
1572delete sg 3de9d5a8-7060-4ff0-8c01-88222de535a7 because project dfbb805d2871471481ed17fb3d83462b doesn't exists
1573+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1574| Field | Value |
1575+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1576| created_at | 2024-09-06T18:50:51Z |
1577| description | Default security group |
1578| id | 3de9d5a8-7060-4ff0-8c01-88222de535a7 |
1579| name | default |
1580| project_id | dfbb805d2871471481ed17fb3d83462b |
1581| revision_number | 6 |
1582| rules | belongs_to_default_sg='True', created_at='2024-09-06T18:50:51Z', direction='egress', ethertype='IPv6', |
1583| | id='02616198-2b49-4ba1-af38-f339ac8316f3', standard_attr_id='4940572', updated_at='2024-09-06T18:50:51Z' |
1584| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:51Z', direction='egress', ethertype='IPv4', |
1585| | id='1305a6a5-fd1c-4806-a616-3a9565de1f52', standard_attr_id='4940578', updated_at='2024-09-06T18:50:51Z' |
1586| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:51Z', direction='ingress', ethertype='IPv4', |
1587| | id='2a3b17c6-b563-40dc-8199-d02eadc3ba6b', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1588| | standard_attr_id='4940581', updated_at='2024-09-06T18:50:51Z' |
1589| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:51Z', direction='ingress', ethertype='IPv4', |
1590| | id='3204aa6a-ad77-411c-ae8d-7da052dd25f0', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1591| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4940584', updated_at='2024-09-06T18:50:51Z' |
1592| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:51Z', direction='ingress', ethertype='IPv6', |
1593| | id='50a560a7-135a-4df4-b634-8230da6f2d3c', remote_group_id='3de9d5a8-7060-4ff0-8c01-88222de535a7', |
1594| | standard_attr_id='4940575', updated_at='2024-09-06T18:50:51Z' |
1595| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:51Z', direction='ingress', ethertype='IPv4', |
1596| | id='59c042cb-c622-40f5-a17e-f148aa04436e', remote_group_id='3de9d5a8-7060-4ff0-8c01-88222de535a7', |
1597| | standard_attr_id='4940569', updated_at='2024-09-06T18:50:51Z' |
1598| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:52Z', direction='ingress', ethertype='IPv4', |
1599| | id='6e5de304-efd6-406d-9a10-63a1e1421e16', protocol='icmp', remote_group_id='3de9d5a8-7060-4ff0-8c01-88222de535a7', |
1600| | standard_attr_id='4940593', updated_at='2024-09-06T18:50:52Z' |
1601| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:52Z', direction='ingress', ethertype='IPv4', |
1602| | id='9c4d7ff3-a175-4fdf-bc74-7299ed8180d0', protocol='udp', remote_group_id='3de9d5a8-7060-4ff0-8c01-88222de535a7', |
1603| | standard_attr_id='4940590', updated_at='2024-09-06T18:50:52Z' |
1604| | belongs_to_default_sg='True', created_at='2024-09-06T18:50:52Z', direction='ingress', ethertype='IPv4', |
1605| | id='bebff96e-dcf2-4b29-b025-c8d30c89e11f', port_range_max='22', port_range_min='22', protocol='tcp', |
1606| | remote_group_id='3de9d5a8-7060-4ff0-8c01-88222de535a7', standard_attr_id='4940587', updated_at='2024-09-06T18:50:52Z' |
1607| shared | False |
1608| stateful | True |
1609| tags | [] |
1610| updated_at | 2024-09-06T18:50:52Z |
1611+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1612wmcs-openstack security group delete 3de9d5a8-7060-4ff0-8c01-88222de535a7
1613sg: 40db83ed-35b6-4e90-92f8-2e422c15cb69 project: lvs-test
1614delete sg 40db83ed-35b6-4e90-92f8-2e422c15cb69 because project lvs-test doesn't exists
1615+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1616| Field | Value |
1617+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1618| created_at | 2018-11-15T13:18:23Z |
1619| description | Default security group |
1620| id | 40db83ed-35b6-4e90-92f8-2e422c15cb69 |
1621| name | default |
1622| project_id | lvs-test |
1623| revision_number | 0 |
1624| rules | belongs_to_default_sg='True', created_at='2018-11-15T13:18:24Z', direction='ingress', ethertype='IPv4', |
1625| | id='2e8d45b4-de9a-4dfe-a850-e597c625d338', normalized_cidr='10.0.0.0/8', port_range_max='22', port_range_min='22', |
1626| | protocol='tcp', remote_ip_prefix='10.0.0.0/8', standard_attr_id='363', updated_at='2018-11-15T13:18:24Z' |
1627| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:25Z', direction='ingress', ethertype='IPv4', |
1628| | id='4ee8d1c9-dc70-4b76-875f-7554bb91c7b7', port_range_max='65535', port_range_min='1', protocol='udp', |
1629| | remote_group_id='40db83ed-35b6-4e90-92f8-2e422c15cb69', standard_attr_id='366', updated_at='2018-11-15T13:18:25Z' |
1630| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:23Z', direction='egress', ethertype='IPv6', |
1631| | id='4f631e58-e8b5-4ab4-9bcc-74959bb2200b', standard_attr_id='361', updated_at='2018-11-15T13:18:23Z' |
1632| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:23Z', direction='egress', ethertype='IPv4', |
1633| | id='5002dddd-29fb-43bf-b270-d134adb701fc', standard_attr_id='359', updated_at='2018-11-15T13:18:23Z' |
1634| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:23Z', direction='ingress', ethertype='IPv6', |
1635| | id='7e8e681d-7a33-43a1-8495-d45e3d71b393', remote_group_id='40db83ed-35b6-4e90-92f8-2e422c15cb69', |
1636| | standard_attr_id='360', updated_at='2018-11-15T13:18:23Z' |
1637| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:24Z', direction='ingress', ethertype='IPv4', |
1638| | id='9479cfcc-3899-4c28-97b0-b8cb3fc8b2a2', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
1639| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='364', updated_at='2018-11-15T13:18:24Z' |
1640| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:24Z', direction='ingress', ethertype='IPv4', |
1641| | id='9f7eb071-049d-43f7-a758-1e8fb94a53ea', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1642| | standard_attr_id='362', updated_at='2018-11-15T13:18:24Z' |
1643| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:24Z', direction='ingress', ethertype='IPv4', |
1644| | id='ae46980c-5258-4c73-8409-e514df074bfb', port_range_max='65535', port_range_min='1', protocol='tcp', |
1645| | remote_group_id='40db83ed-35b6-4e90-92f8-2e422c15cb69', standard_attr_id='365', updated_at='2018-11-15T13:18:24Z' |
1646| | belongs_to_default_sg='True', created_at='2018-11-15T13:18:23Z', direction='ingress', ethertype='IPv4', |
1647| | id='b218d0a0-bad1-4688-b99d-1eb493027010', remote_group_id='40db83ed-35b6-4e90-92f8-2e422c15cb69', |
1648| | standard_attr_id='358', updated_at='2018-11-15T13:18:23Z' |
1649| shared | False |
1650| stateful | True |
1651| tags | [] |
1652| updated_at | 2018-11-15T13:18:23Z |
1653+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1654wmcs-openstack security group delete 40db83ed-35b6-4e90-92f8-2e422c15cb69
1655sg: 41415122-0d47-4b97-88ab-192e848392ad project: pawsdev
1656delete sg 41415122-0d47-4b97-88ab-192e848392ad because project pawsdev doesn't exists
1657+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1658| Field | Value |
1659+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1660| created_at | 2024-01-22T14:53:00Z |
1661| description | Default security group |
1662| id | 41415122-0d47-4b97-88ab-192e848392ad |
1663| name | default |
1664| project_id | pawsdev |
1665| revision_number | 6 |
1666| rules | belongs_to_default_sg='True', created_at='2024-01-22T14:53:00Z', direction='egress', ethertype='IPv4', |
1667| | id='16d7232b-7c41-49e0-9a31-a2dce7d048de', standard_attr_id='4847791', updated_at='2024-01-22T14:53:00Z' |
1668| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:01Z', direction='ingress', ethertype='IPv4', |
1669| | id='3c87555b-3c0d-4323-83a6-699d71a0894d', port_range_max='22', port_range_min='22', protocol='tcp', |
1670| | remote_group_id='41415122-0d47-4b97-88ab-192e848392ad', standard_attr_id='4847806', updated_at='2024-01-22T14:53:01Z' |
1671| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:01Z', direction='ingress', ethertype='IPv4', |
1672| | id='3f4ce50d-ae6f-45f2-b242-486b7e2d8a79', protocol='udp', remote_group_id='41415122-0d47-4b97-88ab-192e848392ad', |
1673| | standard_attr_id='4847809', updated_at='2024-01-22T14:53:01Z' |
1674| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:00Z', direction='ingress', ethertype='IPv4', id='70a980ff- |
1675| | db3d-4513-be77-0d1682020efc', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1676| | standard_attr_id='4847800', updated_at='2024-01-22T14:53:00Z' |
1677| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:00Z', direction='egress', ethertype='IPv6', |
1678| | id='9752edfd-90ab-453d-bae6-15e4edb62d5d', standard_attr_id='4847797', updated_at='2024-01-22T14:53:00Z' |
1679| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:00Z', direction='ingress', ethertype='IPv6', |
1680| | id='a67befe1-89a9-4d0e-9c13-28dc88b8a63f', remote_group_id='41415122-0d47-4b97-88ab-192e848392ad', |
1681| | standard_attr_id='4847794', updated_at='2024-01-22T14:53:00Z' |
1682| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:00Z', direction='ingress', ethertype='IPv4', |
1683| | id='a9797f20-b0ab-4d9f-b8f9-11ee0c8fb253', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1684| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4847803', updated_at='2024-01-22T14:53:00Z' |
1685| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:00Z', direction='ingress', ethertype='IPv4', |
1686| | id='ac598ad9-2faa-4840-a90c-6bac253c98b9', remote_group_id='41415122-0d47-4b97-88ab-192e848392ad', |
1687| | standard_attr_id='4847788', updated_at='2024-01-22T14:53:00Z' |
1688| | belongs_to_default_sg='True', created_at='2024-01-22T14:53:01Z', direction='ingress', ethertype='IPv4', |
1689| | id='bbbd8ba6-f859-4782-8237-c2cd0bfa55d3', protocol='icmp', remote_group_id='41415122-0d47-4b97-88ab-192e848392ad', |
1690| | standard_attr_id='4847812', updated_at='2024-01-22T14:53:01Z' |
1691| shared | False |
1692| stateful | True |
1693| tags | [] |
1694| updated_at | 2024-01-22T14:53:01Z |
1695+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1696wmcs-openstack security group delete 41415122-0d47-4b97-88ab-192e848392ad
1697sg: 41555b6e-17b3-485c-87b9-6b50601d4f29 project: ocata-test-114
1698delete sg 41555b6e-17b3-485c-87b9-6b50601d4f29 because project ocata-test-114 doesn't exists
1699+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1700| Field | Value |
1701+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1702| created_at | 2019-12-04T04:06:17Z |
1703| description | Default security group |
1704| id | 41555b6e-17b3-485c-87b9-6b50601d4f29 |
1705| name | default |
1706| project_id | ocata-test-114 |
1707| revision_number | 6 |
1708| rules | belongs_to_default_sg='True', created_at='2019-12-04T04:06:20Z', direction='ingress', ethertype='IPv4', |
1709| | id='0d0bfdf6-7834-479b-bf90-327fcfbfcefd', port_range_max='65535', port_range_min='1', protocol='udp', |
1710| | remote_group_id='41555b6e-17b3-485c-87b9-6b50601d4f29', revision_number='1', standard_attr_id='882', |
1711| | updated_at='2019-12-04T04:06:20Z' |
1712| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:17Z', direction='egress', ethertype='IPv4', |
1713| | id='3a963657-f405-4911-892a-39d6f9bb94f8', revision_number='1', standard_attr_id='876', |
1714| | updated_at='2019-12-04T04:06:17Z' |
1715| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:20Z', direction='ingress', ethertype='IPv4', |
1716| | id='4e32f488-ad72-48e3-b640-04d84cc73d9d', protocol='icmp', remote_group_id='41555b6e-17b3-485c-87b9-6b50601d4f29', |
1717| | revision_number='1', standard_attr_id='883', updated_at='2019-12-04T04:06:20Z' |
1718| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:19Z', direction='ingress', ethertype='IPv4', |
1719| | id='6ce6d1ed-2160-4a15-b237-50ad296e3e31', port_range_max='22', port_range_min='22', protocol='tcp', |
1720| | remote_group_id='41555b6e-17b3-485c-87b9-6b50601d4f29', revision_number='1', standard_attr_id='881', |
1721| | updated_at='2019-12-04T04:06:19Z' |
1722| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:17Z', direction='ingress', ethertype='IPv6', |
1723| | id='915cfad2-8d1a-40db-9c9e-ea37014c6ddf', remote_group_id='41555b6e-17b3-485c-87b9-6b50601d4f29', revision_number='1', |
1724| | standard_attr_id='877', updated_at='2019-12-04T04:06:17Z' |
1725| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:17Z', direction='egress', ethertype='IPv6', |
1726| | id='9b9db2a9-5162-45bf-bf2e-00cff72979ec', revision_number='1', standard_attr_id='878', |
1727| | updated_at='2019-12-04T04:06:17Z' |
1728| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:18Z', direction='ingress', ethertype='IPv4', |
1729| | id='a0b16bd4-89f2-44f4-a336-8eb1a90461f7', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1730| | revision_number='1', standard_attr_id='879', updated_at='2019-12-04T04:06:18Z' |
1731| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:17Z', direction='ingress', ethertype='IPv4', |
1732| | id='d7802fe7-244e-4b04-8692-c76162ae9e7f', remote_group_id='41555b6e-17b3-485c-87b9-6b50601d4f29', revision_number='1', |
1733| | standard_attr_id='875', updated_at='2019-12-04T04:06:17Z' |
1734| | belongs_to_default_sg='True', created_at='2019-12-04T04:06:18Z', direction='ingress', ethertype='IPv4', |
1735| | id='e05a11eb-8247-44a5-82c3-405b0de11c51', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
1736| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='880', |
1737| | updated_at='2019-12-04T04:06:18Z' |
1738| shared | False |
1739| stateful | True |
1740| tags | [] |
1741| updated_at | 2019-12-04T04:06:20Z |
1742+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1743wmcs-openstack security group delete 41555b6e-17b3-485c-87b9-6b50601d4f29
1744sg: 4230f0d1-31b6-4530-ac2c-1c79aae49c99 project: eb6adccf290c44ff8499eb99e2bfc6f5
1745delete sg 4230f0d1-31b6-4530-ac2c-1c79aae49c99 because project eb6adccf290c44ff8499eb99e2bfc6f5 doesn't exists
1746+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1747| Field | Value |
1748+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1749| created_at | 2024-08-22T15:25:15Z |
1750| description | Default security group |
1751| id | 4230f0d1-31b6-4530-ac2c-1c79aae49c99 |
1752| name | default |
1753| project_id | eb6adccf290c44ff8499eb99e2bfc6f5 |
1754| revision_number | 6 |
1755| rules | belongs_to_default_sg='True', created_at='2024-08-22T15:25:16Z', direction='ingress', ethertype='IPv4', |
1756| | id='1f099b95-e8cb-4709-b3b4-b10f2ba8185b', protocol='udp', remote_group_id='4230f0d1-31b6-4530-ac2c-1c79aae49c99', |
1757| | standard_attr_id='4933396', updated_at='2024-08-22T15:25:16Z' |
1758| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:16Z', direction='ingress', ethertype='IPv4', id='646e11cb- |
1759| | eddb-4505-98dd-8449012d1866', port_range_max='22', port_range_min='22', protocol='tcp', |
1760| | remote_group_id='4230f0d1-31b6-4530-ac2c-1c79aae49c99', standard_attr_id='4933393', updated_at='2024-08-22T15:25:16Z' |
1761| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:15Z', direction='ingress', ethertype='IPv4', |
1762| | id='75c6c69b-4f2f-436c-adc6-4b7ced8706be', remote_group_id='4230f0d1-31b6-4530-ac2c-1c79aae49c99', |
1763| | standard_attr_id='4933375', updated_at='2024-08-22T15:25:15Z' |
1764| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:15Z', direction='ingress', ethertype='IPv4', |
1765| | id='769b34b5-f3dc-49a0-97bf-e0b27fed3119', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1766| | standard_attr_id='4933387', updated_at='2024-08-22T15:25:15Z' |
1767| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:15Z', direction='egress', ethertype='IPv6', |
1768| | id='8277b683-4071-4fbe-beac-afc481b029c6', standard_attr_id='4933378', updated_at='2024-08-22T15:25:15Z' |
1769| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:16Z', direction='ingress', ethertype='IPv4', |
1770| | id='aab41a43-cdd1-44ce-af0f-cb97c5d36180', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1771| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4933390', updated_at='2024-08-22T15:25:16Z' |
1772| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:15Z', direction='egress', ethertype='IPv4', |
1773| | id='adab37a0-65d8-40ef-9669-7de9b981512e', standard_attr_id='4933384', updated_at='2024-08-22T15:25:15Z' |
1774| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:15Z', direction='ingress', ethertype='IPv6', |
1775| | id='b24e4ff2-ceeb-4460-9d5b-55ed0ccb9917', remote_group_id='4230f0d1-31b6-4530-ac2c-1c79aae49c99', |
1776| | standard_attr_id='4933381', updated_at='2024-08-22T15:25:15Z' |
1777| | belongs_to_default_sg='True', created_at='2024-08-22T15:25:17Z', direction='ingress', ethertype='IPv4', |
1778| | id='cef15d33-7d7b-4aab-9ccf-a5f39f033cf7', protocol='icmp', remote_group_id='4230f0d1-31b6-4530-ac2c-1c79aae49c99', |
1779| | standard_attr_id='4933399', updated_at='2024-08-22T15:25:17Z' |
1780| shared | False |
1781| stateful | True |
1782| tags | [] |
1783| updated_at | 2024-08-22T15:25:17Z |
1784+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1785wmcs-openstack security group delete 4230f0d1-31b6-4530-ac2c-1c79aae49c99
1786sg: 438bafec-e83b-4a5c-81e3-75b335dbe457 project: ussuriprojecttest17
1787delete sg 438bafec-e83b-4a5c-81e3-75b335dbe457 because project ussuriprojecttest17 doesn't exists
1788+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1789| Field | Value |
1790+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1791| created_at | 2021-04-07T17:46:30Z |
1792| description | Default security group |
1793| id | 438bafec-e83b-4a5c-81e3-75b335dbe457 |
1794| name | default |
1795| project_id | ussuriprojecttest17 |
1796| revision_number | 6 |
1797| rules | belongs_to_default_sg='True', created_at='2021-04-07T17:46:30Z', direction='egress', ethertype='IPv6', |
1798| | id='19e58379-28b1-4ffd-984f-c0a747cae164', standard_attr_id='4062', updated_at='2021-04-07T17:46:30Z' |
1799| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:31Z', direction='ingress', ethertype='IPv4', |
1800| | id='3d757080-8a70-4654-ad28-1a6882d99969', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1801| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4068', updated_at='2021-04-07T17:46:31Z' |
1802| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:30Z', direction='ingress', ethertype='IPv6', |
1803| | id='4ac95a54-a36a-4fa7-914f-e97ebdd1939a', remote_group_id='438bafec-e83b-4a5c-81e3-75b335dbe457', |
1804| | standard_attr_id='4059', updated_at='2021-04-07T17:46:30Z' |
1805| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:30Z', direction='ingress', ethertype='IPv4', |
1806| | id='4be53339-87e0-4219-84f9-1434ccaa6ae3', remote_group_id='438bafec-e83b-4a5c-81e3-75b335dbe457', |
1807| | standard_attr_id='4053', updated_at='2021-04-07T17:46:30Z' |
1808| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:31Z', direction='ingress', ethertype='IPv4', |
1809| | id='6c5c77bc-8f50-47fe-bd9c-c827273ef07e', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1810| | standard_attr_id='4065', updated_at='2021-04-07T17:46:31Z' |
1811| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:31Z', direction='ingress', ethertype='IPv4', |
1812| | id='7c68571c-5a89-45cf-8ec3-45f26bcba6f8', protocol='icmp', remote_group_id='438bafec-e83b-4a5c-81e3-75b335dbe457', |
1813| | standard_attr_id='4077', updated_at='2021-04-07T17:46:31Z' |
1814| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:31Z', direction='ingress', ethertype='IPv4', |
1815| | id='b11b1a6a-c0f0-4815-bff3-1986bd777c92', protocol='udp', remote_group_id='438bafec-e83b-4a5c-81e3-75b335dbe457', |
1816| | standard_attr_id='4074', updated_at='2021-04-07T17:46:31Z' |
1817| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:30Z', direction='egress', ethertype='IPv4', |
1818| | id='c32a6494-06a4-4e4c-948c-96e2f47ba2c2', standard_attr_id='4056', updated_at='2021-04-07T17:46:30Z' |
1819| | belongs_to_default_sg='True', created_at='2021-04-07T17:46:31Z', direction='ingress', ethertype='IPv4', |
1820| | id='ed0534f1-d1f5-4458-a612-cf4595f073de', port_range_max='22', port_range_min='22', protocol='tcp', |
1821| | remote_group_id='438bafec-e83b-4a5c-81e3-75b335dbe457', standard_attr_id='4071', updated_at='2021-04-07T17:46:31Z' |
1822| shared | False |
1823| stateful | True |
1824| tags | [] |
1825| updated_at | 2021-04-07T17:46:31Z |
1826+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1827wmcs-openstack security group delete 438bafec-e83b-4a5c-81e3-75b335dbe457
1828sg: 441331b3-0f39-4276-9def-040a42c56c45 project: ldaptest2
1829delete sg 441331b3-0f39-4276-9def-040a42c56c45 because project ldaptest2 doesn't exists
1830+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1831| Field | Value |
1832+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1833| created_at | 2020-06-29T21:16:38Z |
1834| description | Default security group |
1835| id | 441331b3-0f39-4276-9def-040a42c56c45 |
1836| name | default |
1837| project_id | ldaptest2 |
1838| revision_number | 6 |
1839| rules | belongs_to_default_sg='True', created_at='2020-06-29T21:16:38Z', direction='ingress', ethertype='IPv6', |
1840| | id='095275ab-5c34-4b29-81e5-a71eae9e1d7b', remote_group_id='441331b3-0f39-4276-9def-040a42c56c45', |
1841| | standard_attr_id='1719', updated_at='2020-06-29T21:16:38Z' |
1842| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:39Z', direction='ingress', ethertype='IPv4', |
1843| | id='0a2a78f9-a0e6-4cca-aa02-1249c4268cf1', port_range_max='22', port_range_min='22', protocol='tcp', |
1844| | remote_group_id='441331b3-0f39-4276-9def-040a42c56c45', standard_attr_id='1731', updated_at='2020-06-29T21:16:39Z' |
1845| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:39Z', direction='ingress', ethertype='IPv4', |
1846| | id='114b7b66-74c6-473d-b603-899142c1210d', port_range_max='65535', port_range_min='1', protocol='udp', |
1847| | remote_group_id='441331b3-0f39-4276-9def-040a42c56c45', standard_attr_id='1734', updated_at='2020-06-29T21:16:39Z' |
1848| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:38Z', direction='egress', ethertype='IPv6', |
1849| | id='19ebf3b8-73f7-4f76-9eab-1568728228a4', standard_attr_id='1722', updated_at='2020-06-29T21:16:38Z' |
1850| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:38Z', direction='ingress', ethertype='IPv4', |
1851| | id='9e4e2e96-00b7-4570-8668-dac984b62225', remote_group_id='441331b3-0f39-4276-9def-040a42c56c45', |
1852| | standard_attr_id='1713', updated_at='2020-06-29T21:16:38Z' |
1853| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:38Z', direction='ingress', ethertype='IPv4', |
1854| | id='caeb148a-c484-4b57-8311-e17c87b60f8f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1855| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1728', updated_at='2020-06-29T21:16:38Z' |
1856| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:38Z', direction='egress', ethertype='IPv4', |
1857| | id='e5942c25-4ab8-4f45-b330-9a3d539ffb91', standard_attr_id='1716', updated_at='2020-06-29T21:16:38Z' |
1858| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:38Z', direction='ingress', ethertype='IPv4', |
1859| | id='e7f698ac-0c9a-469c-9f50-8007c1909a94', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1860| | standard_attr_id='1725', updated_at='2020-06-29T21:16:38Z' |
1861| | belongs_to_default_sg='True', created_at='2020-06-29T21:16:39Z', direction='ingress', ethertype='IPv4', |
1862| | id='f7d75b91-06ce-4b54-8938-1ab003ccefa2', protocol='icmp', remote_group_id='441331b3-0f39-4276-9def-040a42c56c45', |
1863| | standard_attr_id='1737', updated_at='2020-06-29T21:16:39Z' |
1864| shared | False |
1865| stateful | True |
1866| tags | [] |
1867| updated_at | 2020-06-29T21:16:39Z |
1868+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1869wmcs-openstack security group delete 441331b3-0f39-4276-9def-040a42c56c45
1870sg: 46fd49ef-3a9d-4fad-9649-86a151d41928 project: ldaptestproject
1871delete sg 46fd49ef-3a9d-4fad-9649-86a151d41928 because project ldaptestproject doesn't exists
1872+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1873| Field | Value |
1874+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1875| created_at | 2020-04-06T23:38:32Z |
1876| description | Default security group |
1877| id | 46fd49ef-3a9d-4fad-9649-86a151d41928 |
1878| name | default |
1879| project_id | ldaptestproject |
1880| revision_number | 6 |
1881| rules | belongs_to_default_sg='True', created_at='2020-04-06T23:38:33Z', direction='ingress', ethertype='IPv4', |
1882| | id='07f3ca63-e0b6-46ba-843b-32fdb50857c5', port_range_max='65535', port_range_min='1', protocol='udp', |
1883| | remote_group_id='46fd49ef-3a9d-4fad-9649-86a151d41928', standard_attr_id='1237', updated_at='2020-04-06T23:38:33Z' |
1884| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:33Z', direction='ingress', ethertype='IPv4', |
1885| | id='16ff4111-85f9-47a7-a335-9b74514eae44', port_range_max='22', port_range_min='22', protocol='tcp', |
1886| | remote_group_id='46fd49ef-3a9d-4fad-9649-86a151d41928', standard_attr_id='1236', updated_at='2020-04-06T23:38:33Z' |
1887| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:32Z', direction='ingress', ethertype='IPv4', |
1888| | id='527dfda7-b15f-4367-90bc-78bf70c88ec7', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1889| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1235', updated_at='2020-04-06T23:38:32Z' |
1890| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:32Z', direction='ingress', ethertype='IPv4', |
1891| | id='5f67a1a8-4c1c-4002-891a-6f46e62e83ea', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1892| | standard_attr_id='1234', updated_at='2020-04-06T23:38:32Z' |
1893| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:33Z', direction='ingress', ethertype='IPv4', |
1894| | id='699f14bf-1f7a-4e12-a042-52272f6484de', protocol='icmp', remote_group_id='46fd49ef-3a9d-4fad-9649-86a151d41928', |
1895| | standard_attr_id='1238', updated_at='2020-04-06T23:38:33Z' |
1896| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:32Z', direction='egress', ethertype='IPv6', |
1897| | id='6e8b4321-879f-4040-8938-f39b9009dcd9', standard_attr_id='1233', updated_at='2020-04-06T23:38:32Z' |
1898| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:32Z', direction='ingress', ethertype='IPv6', |
1899| | id='71403af9-fa10-49c7-823d-5bf14b4a45f4', remote_group_id='46fd49ef-3a9d-4fad-9649-86a151d41928', |
1900| | standard_attr_id='1232', updated_at='2020-04-06T23:38:32Z' |
1901| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:32Z', direction='egress', ethertype='IPv4', |
1902| | id='a305cc55-7184-4214-a6f2-64d959071373', standard_attr_id='1231', updated_at='2020-04-06T23:38:32Z' |
1903| | belongs_to_default_sg='True', created_at='2020-04-06T23:38:32Z', direction='ingress', ethertype='IPv4', |
1904| | id='dde5bdf6-63ba-4946-b0a9-0f48c6527814', remote_group_id='46fd49ef-3a9d-4fad-9649-86a151d41928', |
1905| | standard_attr_id='1230', updated_at='2020-04-06T23:38:32Z' |
1906| shared | False |
1907| stateful | True |
1908| tags | [] |
1909| updated_at | 2020-04-06T23:38:33Z |
1910+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1911wmcs-openstack security group delete 46fd49ef-3a9d-4fad-9649-86a151d41928
1912sg: 49b3683f-023c-4daf-bbad-c1c82759a001 project: newprojectdomaintest3
1913delete sg 49b3683f-023c-4daf-bbad-c1c82759a001 because project newprojectdomaintest3 doesn't exists
1914+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1915| Field | Value |
1916+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1917| created_at | 2020-03-02T20:31:52Z |
1918| description | Default security group |
1919| id | 49b3683f-023c-4daf-bbad-c1c82759a001 |
1920| name | default |
1921| project_id | newprojectdomaintest3 |
1922| revision_number | 9 |
1923| rules | belongs_to_default_sg='True', created_at='2020-03-02T20:31:52Z', direction='ingress', ethertype='IPv4', |
1924| | id='0767e0cc-f752-4bdc-a7b9-c8677a8d3d74', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1925| | standard_attr_id='1144', updated_at='2020-03-02T20:31:52Z' |
1926| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:54Z', direction='ingress', ethertype='IPv4', |
1927| | id='45639ff9-27b5-4923-ab33-d50650afaadb', protocol='icmp', remote_group_id='49b3683f-023c-4daf-bbad-c1c82759a001', |
1928| | standard_attr_id='1148', updated_at='2020-03-02T20:31:54Z' |
1929| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:53Z', direction='ingress', ethertype='IPv4', |
1930| | id='8902e2cf-b561-4342-a22f-47994eca5f8c', port_range_max='22', port_range_min='22', protocol='tcp', |
1931| | remote_group_id='49b3683f-023c-4daf-bbad-c1c82759a001', standard_attr_id='1146', updated_at='2020-03-02T20:31:53Z' |
1932| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:52Z', direction='ingress', ethertype='IPv4', |
1933| | id='ac3d11b8-ae57-46d2-a2c1-4d4694c47c45', remote_group_id='49b3683f-023c-4daf-bbad-c1c82759a001', |
1934| | standard_attr_id='1140', updated_at='2020-03-02T20:31:52Z' |
1935| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:52Z', direction='ingress', ethertype='IPv6', |
1936| | id='add530a7-5fd4-49f4-a91c-8aed84ece804', remote_group_id='49b3683f-023c-4daf-bbad-c1c82759a001', |
1937| | standard_attr_id='1142', updated_at='2020-03-02T20:31:52Z' |
1938| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:52Z', direction='egress', ethertype='IPv6', |
1939| | id='ae0931b3-e2f6-4eb5-9d47-f2d7ebc45a89', standard_attr_id='1143', updated_at='2020-03-02T20:31:52Z' |
1940| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:53Z', direction='ingress', ethertype='IPv4', |
1941| | id='c9405b33-74fc-4adf-9e2e-a3661917dace', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1942| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1145', updated_at='2020-03-02T20:31:53Z' |
1943| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:53Z', direction='ingress', ethertype='IPv4', |
1944| | id='daa5861e-95c4-461a-8197-40b2ced98227', port_range_max='65535', port_range_min='1', protocol='udp', |
1945| | remote_group_id='49b3683f-023c-4daf-bbad-c1c82759a001', standard_attr_id='1147', updated_at='2020-03-02T20:31:53Z' |
1946| | belongs_to_default_sg='True', created_at='2020-03-02T20:31:52Z', direction='egress', ethertype='IPv4', |
1947| | id='fda12aa5-d346-4195-9464-e59540d3dd4a', standard_attr_id='1141', updated_at='2020-03-02T20:31:52Z' |
1948| shared | False |
1949| stateful | True |
1950| tags | [] |
1951| updated_at | 2020-03-02T20:31:54Z |
1952+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1953wmcs-openstack security group delete 49b3683f-023c-4daf-bbad-c1c82759a001
1954sg: 4a0454d4-1007-47a5-bf49-cbd2c9382647 project: 335b8be542f4495aa60aaa557f445898
1955delete sg 4a0454d4-1007-47a5-bf49-cbd2c9382647 because project 335b8be542f4495aa60aaa557f445898 doesn't exists
1956+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1957| Field | Value |
1958+-----------------+-------------------------------------------------------------------------------------------------------------------------+
1959| created_at | 2024-09-25T09:51:47Z |
1960| description | Default security group |
1961| id | 4a0454d4-1007-47a5-bf49-cbd2c9382647 |
1962| name | default |
1963| project_id | 335b8be542f4495aa60aaa557f445898 |
1964| revision_number | 7 |
1965| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
1966| | id='01e14263-c142-4419-a14f-a9d7535688e9', remote_group_id='4a0454d4-1007-47a5-bf49-cbd2c9382647', |
1967| | standard_attr_id='4950676', updated_at='2024-09-25T09:51:47Z' |
1968| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
1969| | id='1eedba65-05a2-4855-880e-15dc78135247', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
1970| | standard_attr_id='4950766', updated_at='2024-09-25T09:51:47Z' |
1971| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
1972| | id='3deabf45-0b81-447e-a605-44d43f56d759', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
1973| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950808', updated_at='2024-09-25T09:51:48Z' |
1974| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
1975| | id='59c34f91-d429-44dc-96ef-a5374e353446', port_range_max='22', port_range_min='22', protocol='tcp', |
1976| | remote_group_id='4a0454d4-1007-47a5-bf49-cbd2c9382647', standard_attr_id='4950835', updated_at='2024-09-25T09:51:48Z' |
1977| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
1978| | id='5e774af1-c7fe-4921-87ea-1481db603e93', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
1979| | standard_attr_id='4950694', updated_at='2024-09-25T09:51:47Z' |
1980| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
1981| | id='622b84ed-b43b-4073-9e93-94b2d2baff90', remote_group_id='4a0454d4-1007-47a5-bf49-cbd2c9382647', |
1982| | standard_attr_id='4950667', updated_at='2024-09-25T09:51:47Z' |
1983| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
1984| | id='71d46bac-0c07-4870-aa45-c21a067a9fd6', protocol='udp', remote_group_id='4a0454d4-1007-47a5-bf49-cbd2c9382647', |
1985| | standard_attr_id='4950859', updated_at='2024-09-25T09:51:49Z' |
1986| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
1987| | id='7e3ed124-837c-4b15-9189-9ec610f1b6d9', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950685', |
1988| | updated_at='2024-09-25T09:51:47Z' |
1989| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
1990| | id='a5799223-9547-45dc-bb32-e5411de3686a', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
1991| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950787', updated_at='2024-09-25T09:51:48Z' |
1992| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
1993| | id='daad157c-c33c-4e6e-839c-c43e082df3a5', protocol='icmp', remote_group_id='4a0454d4-1007-47a5-bf49-cbd2c9382647', |
1994| | standard_attr_id='4950892', updated_at='2024-09-25T09:51:49Z' |
1995| shared | False |
1996| stateful | True |
1997| tags | [] |
1998| updated_at | 2024-09-25T09:51:49Z |
1999+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2000wmcs-openstack security group delete 4a0454d4-1007-47a5-bf49-cbd2c9382647
2001sg: 4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a project: devproject23
2002delete sg 4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a because project devproject23 doesn't exists
2003+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2004| Field | Value |
2005+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2006| created_at | 2019-05-20T17:19:35Z |
2007| description | Default security group |
2008| id | 4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a |
2009| name | default |
2010| project_id | devproject23 |
2011| revision_number | 0 |
2012| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:19:35Z', direction='ingress', ethertype='IPv4', |
2013| | id='0ca82737-4bc8-479f-8f80-96073028e38a', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2014| | standard_attr_id='479', updated_at='2019-05-20T17:19:35Z' |
2015| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:35Z', direction='ingress', ethertype='IPv6', |
2016| | id='2f6977fb-66e7-4360-ab9e-f3c5c6ac7d68', remote_group_id='4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a', |
2017| | standard_attr_id='477', updated_at='2019-05-20T17:19:35Z' |
2018| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:36Z', direction='ingress', ethertype='IPv4', |
2019| | id='4b350f85-9f92-4b87-a97b-3809b6805a0d', port_range_max='22', port_range_min='22', protocol='tcp', |
2020| | remote_group_id='4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a', standard_attr_id='481', updated_at='2019-05-20T17:19:36Z' |
2021| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:35Z', direction='egress', ethertype='IPv4', |
2022| | id='68e00d13-db9c-40b6-82e2-3db09064981e', standard_attr_id='476', updated_at='2019-05-20T17:19:35Z' |
2023| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:35Z', direction='ingress', ethertype='IPv4', |
2024| | id='6927bb6b-92f5-4679-b919-368c27f8262d', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2025| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='480', updated_at='2019-05-20T17:19:35Z' |
2026| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:36Z', direction='ingress', ethertype='IPv4', |
2027| | id='ab8c8950-03fb-4265-986d-a3e7b3bcd02a', protocol='icmp', remote_group_id='4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a', |
2028| | standard_attr_id='483', updated_at='2019-05-20T17:19:36Z' |
2029| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:36Z', direction='ingress', ethertype='IPv4', |
2030| | id='b4ad883c-c134-4f13-91a3-7ce6fa3c4947', port_range_max='65535', port_range_min='1', protocol='udp', |
2031| | remote_group_id='4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a', standard_attr_id='482', updated_at='2019-05-20T17:19:36Z' |
2032| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:35Z', direction='ingress', ethertype='IPv4', |
2033| | id='be297e58-57c0-4132-9c05-e6a5e15c346c', remote_group_id='4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a', |
2034| | standard_attr_id='475', updated_at='2019-05-20T17:19:35Z' |
2035| | belongs_to_default_sg='True', created_at='2019-05-20T17:19:35Z', direction='egress', ethertype='IPv6', |
2036| | id='fdbbd7b0-6fb0-427b-b42e-bfa07a3069e7', standard_attr_id='478', updated_at='2019-05-20T17:19:35Z' |
2037| shared | False |
2038| stateful | True |
2039| tags | [] |
2040| updated_at | 2019-05-20T17:19:35Z |
2041+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2042wmcs-openstack security group delete 4c3004f8-cdac-43d2-8bb5-d8b857c7cc3a
2043sg: 4fbd0a14-a161-406f-aa4c-321446fcde6a project: cloudinfra
2044delete sg 4fbd0a14-a161-406f-aa4c-321446fcde6a because project cloudinfra doesn't exists
2045+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2046| Field | Value |
2047+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2048| created_at | 2019-09-13T16:33:10Z |
2049| description | Default security group |
2050| id | 4fbd0a14-a161-406f-aa4c-321446fcde6a |
2051| name | default |
2052| project_id | cloudinfra |
2053| revision_number | 0 |
2054| rules | belongs_to_default_sg='True', created_at='2019-09-13T16:33:10Z', direction='ingress', ethertype='IPv6', |
2055| | id='1574b52b-50e3-494e-bd64-b580d30e29b5', remote_group_id='4fbd0a14-a161-406f-aa4c-321446fcde6a', |
2056| | standard_attr_id='596', updated_at='2019-09-13T16:33:10Z' |
2057| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:12Z', direction='ingress', ethertype='IPv4', |
2058| | id='43e0fd3d-6b49-4961-a7cc-513638fff6ef', protocol='icmp', remote_group_id='4fbd0a14-a161-406f-aa4c-321446fcde6a', |
2059| | standard_attr_id='602', updated_at='2019-09-13T16:33:12Z' |
2060| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:11Z', direction='ingress', ethertype='IPv4', |
2061| | id='a4b8150d-f779-4327-b1ad-30605e1b95ee', port_range_max='22', port_range_min='22', protocol='tcp', |
2062| | remote_group_id='4fbd0a14-a161-406f-aa4c-321446fcde6a', standard_attr_id='600', updated_at='2019-09-13T16:33:11Z' |
2063| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:11Z', direction='ingress', ethertype='IPv4', |
2064| | id='c6ccb7ad-1cf8-4367-8ed0-5ff34064739b', port_range_max='65535', port_range_min='1', protocol='udp', |
2065| | remote_group_id='4fbd0a14-a161-406f-aa4c-321446fcde6a', standard_attr_id='601', updated_at='2019-09-13T16:33:11Z' |
2066| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:10Z', direction='egress', ethertype='IPv6', |
2067| | id='e83dc916-6fc0-47f4-99a3-3ae1cef2fb1a', standard_attr_id='597', updated_at='2019-09-13T16:33:10Z' |
2068| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:10Z', direction='ingress', ethertype='IPv4', |
2069| | id='ec563a48-0474-4640-8798-76c25259a517', remote_group_id='4fbd0a14-a161-406f-aa4c-321446fcde6a', |
2070| | standard_attr_id='594', updated_at='2019-09-13T16:33:10Z' |
2071| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:10Z', direction='ingress', ethertype='IPv4', |
2072| | id='f1f9f75e-e54e-45e1-b5f6-5bf20f3e6dbe', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2073| | standard_attr_id='598', updated_at='2019-09-13T16:33:10Z' |
2074| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:10Z', direction='egress', ethertype='IPv4', |
2075| | id='f34556d1-dd34-4747-8034-a18afb23b299', standard_attr_id='595', updated_at='2019-09-13T16:33:10Z' |
2076| | belongs_to_default_sg='True', created_at='2019-09-13T16:33:11Z', direction='ingress', ethertype='IPv4', |
2077| | id='f4a3eb67-e8f2-471a-80b5-b39a37f4db28', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2078| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='599', updated_at='2019-09-13T16:33:11Z' |
2079| shared | False |
2080| stateful | True |
2081| tags | [] |
2082| updated_at | 2019-09-13T16:33:10Z |
2083+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2084wmcs-openstack security group delete 4fbd0a14-a161-406f-aa4c-321446fcde6a
2085sg: 5135d8da-c457-4890-891f-40906b31d1c1 project: tf-infra-dev
2086sg: 515aa03c-a247-4077-9054-3e3484510d7a project: paws-dev
2087delete sg 515aa03c-a247-4077-9054-3e3484510d7a because project paws-dev doesn't exists
2088+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2089| Field | Value |
2090+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2091| created_at | 2023-01-05T14:45:21Z |
2092| description | Default security group |
2093| id | 515aa03c-a247-4077-9054-3e3484510d7a |
2094| name | default |
2095| project_id | paws-dev |
2096| revision_number | 6 |
2097| rules | belongs_to_default_sg='True', created_at='2023-01-05T14:45:22Z', direction='ingress', ethertype='IPv4', |
2098| | id='3f8caa9c-ef17-4343-a889-a3577bdad3dc', port_range_max='22', port_range_min='22', protocol='tcp', |
2099| | remote_group_id='515aa03c-a247-4077-9054-3e3484510d7a', standard_attr_id='4722787', updated_at='2023-01-05T14:45:22Z' |
2100| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:22Z', direction='ingress', ethertype='IPv4', |
2101| | id='6c925a63-d1af-449d-b25e-ccc8f4547922', protocol='udp', remote_group_id='515aa03c-a247-4077-9054-3e3484510d7a', |
2102| | standard_attr_id='4722790', updated_at='2023-01-05T14:45:22Z' |
2103| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:21Z', direction='egress', ethertype='IPv4', |
2104| | id='78ac80e2-0a96-4f64-b35c-e7cedeaf11a2', standard_attr_id='4722772', updated_at='2023-01-05T14:45:21Z' |
2105| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:22Z', direction='ingress', ethertype='IPv4', |
2106| | id='7f226180-5e7d-4ddb-bfe1-dc1c7cb4947a', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
2107| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4722784', updated_at='2023-01-05T14:45:22Z' |
2108| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:21Z', direction='ingress', ethertype='IPv4', |
2109| | id='82b46a4e-cbb3-4cdf-bd5a-12984254d683', remote_group_id='515aa03c-a247-4077-9054-3e3484510d7a', |
2110| | standard_attr_id='4722769', updated_at='2023-01-05T14:45:21Z' |
2111| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:22Z', direction='ingress', ethertype='IPv4', |
2112| | id='8cb43047-bcca-4fa0-89c4-7e38e46b2cc3', protocol='icmp', remote_group_id='515aa03c-a247-4077-9054-3e3484510d7a', |
2113| | standard_attr_id='4722793', updated_at='2023-01-05T14:45:22Z' |
2114| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:21Z', direction='ingress', ethertype='IPv6', |
2115| | id='96947ca1-5b13-4473-9696-239d8f6f47c7', remote_group_id='515aa03c-a247-4077-9054-3e3484510d7a', |
2116| | standard_attr_id='4722775', updated_at='2023-01-05T14:45:21Z' |
2117| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:21Z', direction='ingress', ethertype='IPv4', |
2118| | id='a7cc1d0e-87ba-4593-a8a6-ae36c68db382', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2119| | standard_attr_id='4722781', updated_at='2023-01-05T14:45:21Z' |
2120| | belongs_to_default_sg='True', created_at='2023-01-05T14:45:21Z', direction='egress', ethertype='IPv6', |
2121| | id='ca2fc26b-44fe-4a8b-b560-03c9e8398ee2', standard_attr_id='4722778', updated_at='2023-01-05T14:45:21Z' |
2122| shared | False |
2123| stateful | True |
2124| tags | [] |
2125| updated_at | 2023-01-05T14:45:22Z |
2126+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2127wmcs-openstack security group delete 515aa03c-a247-4077-9054-3e3484510d7a
2128sg: 540c81eb-2c85-4320-846c-46cb1e5144c4 project: ocata-test-111
2129delete sg 540c81eb-2c85-4320-846c-46cb1e5144c4 because project ocata-test-111 doesn't exists
2130+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2131| Field | Value |
2132+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2133| created_at | 2019-12-03T13:35:03Z |
2134| description | Default security group |
2135| id | 540c81eb-2c85-4320-846c-46cb1e5144c4 |
2136| name | default |
2137| project_id | ocata-test-111 |
2138| revision_number | 6 |
2139| rules | belongs_to_default_sg='True', created_at='2019-12-03T13:35:06Z', direction='ingress', ethertype='IPv4', |
2140| | id='288062bd-9825-47a8-ae65-7f75120dad92', port_range_max='65535', port_range_min='1', protocol='udp', |
2141| | remote_group_id='540c81eb-2c85-4320-846c-46cb1e5144c4', revision_number='1', standard_attr_id='852', |
2142| | updated_at='2019-12-03T13:35:06Z' |
2143| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:05Z', direction='ingress', ethertype='IPv4', |
2144| | id='6b489348-e4d7-4b1d-8a64-abe6ea896f4e', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2145| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='850', |
2146| | updated_at='2019-12-03T13:35:05Z' |
2147| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:03Z', direction='egress', ethertype='IPv4', |
2148| | id='77557a74-aa2a-4f5c-a19e-4a6121ce1654', revision_number='1', standard_attr_id='846', |
2149| | updated_at='2019-12-03T13:35:03Z' |
2150| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:03Z', direction='egress', ethertype='IPv6', |
2151| | id='86ac61c0-3004-4128-84fd-011d9cbe4e43', revision_number='1', standard_attr_id='848', |
2152| | updated_at='2019-12-03T13:35:03Z' |
2153| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:03Z', direction='ingress', ethertype='IPv6', |
2154| | id='8d91eec8-dbe3-41cf-b227-57b87e80b80a', remote_group_id='540c81eb-2c85-4320-846c-46cb1e5144c4', revision_number='1', |
2155| | standard_attr_id='847', updated_at='2019-12-03T13:35:03Z' |
2156| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:03Z', direction='ingress', ethertype='IPv4', |
2157| | id='9097a17d-242d-4127-9006-29744f05f7ba', remote_group_id='540c81eb-2c85-4320-846c-46cb1e5144c4', revision_number='1', |
2158| | standard_attr_id='845', updated_at='2019-12-03T13:35:03Z' |
2159| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:04Z', direction='ingress', ethertype='IPv4', |
2160| | id='bacd11f9-9ef4-41e3-9a60-fcfb9c847f1b', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2161| | revision_number='1', standard_attr_id='849', updated_at='2019-12-03T13:35:04Z' |
2162| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:06Z', direction='ingress', ethertype='IPv4', |
2163| | id='d8dc1368-678e-449e-8a9a-874426d4af33', protocol='icmp', remote_group_id='540c81eb-2c85-4320-846c-46cb1e5144c4', |
2164| | revision_number='1', standard_attr_id='853', updated_at='2019-12-03T13:35:06Z' |
2165| | belongs_to_default_sg='True', created_at='2019-12-03T13:35:05Z', direction='ingress', ethertype='IPv4', |
2166| | id='e1fcfebd-a107-462b-9bb1-d973e9d02f99', port_range_max='22', port_range_min='22', protocol='tcp', |
2167| | remote_group_id='540c81eb-2c85-4320-846c-46cb1e5144c4', revision_number='1', standard_attr_id='851', |
2168| | updated_at='2019-12-03T13:35:05Z' |
2169| shared | False |
2170| stateful | True |
2171| tags | [] |
2172| updated_at | 2019-12-03T13:35:07Z |
2173+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2174wmcs-openstack security group delete 540c81eb-2c85-4320-846c-46cb1e5144c4
2175sg: 55c2dd0b-7007-494b-b629-649d040d098d project: pawsdev
2176delete sg 55c2dd0b-7007-494b-b629-649d040d098d because project pawsdev doesn't exists
2177+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2178| Field | Value |
2179+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2180| created_at | 2024-05-29T12:35:26Z |
2181| description | |
2182| id | 55c2dd0b-7007-494b-b629-649d040d098d |
2183| name | paws-dev-126-1-ded26dmgvj7d-secgroup_kube_minion-3i6uko4auhcy |
2184| project_id | pawsdev |
2185| revision_number | 10 |
2186| rules | created_at='2024-05-29T12:35:26Z', direction='egress', ethertype='IPv4', id='321a9de9-d106-4e9c-929f-8543a40d6b82', |
2187| | standard_attr_id='4905740', updated_at='2024-05-29T12:35:26Z' |
2188| | created_at='2024-05-29T12:35:27Z', direction='ingress', ethertype='IPv4', id='6a821255-2636-4030-9bf7-868204454925', |
2189| | protocol='udp', remote_group_id='55c2dd0b-7007-494b-b629-649d040d098d', standard_attr_id='4905767', |
2190| | updated_at='2024-05-29T12:35:27Z' |
2191| | created_at='2024-05-29T12:35:27Z', direction='ingress', ethertype='IPv4', id='8365a0be-8b89-4d06-978d-c8ded6e91833', |
2192| | normalized_cidr='10.100.0.0/16', protocol='udp', remote_ip_prefix='10.100.0.0/16', standard_attr_id='4905758', |
2193| | updated_at='2024-05-29T12:35:27Z' |
2194| | created_at='2024-05-29T12:35:26Z', direction='ingress', ethertype='IPv4', id='8dd301f2-3228-4140-8831-fbeff8ea8e48', |
2195| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4905749', |
2196| | updated_at='2024-05-29T12:35:26Z' |
2197| | created_at='2024-05-29T12:35:26Z', direction='egress', ethertype='IPv6', id='a73c0e3a-f034-41b3-a300-9fb84c0c9c36', |
2198| | standard_attr_id='4905737', updated_at='2024-05-29T12:35:26Z' |
2199| | created_at='2024-05-29T12:35:27Z', direction='ingress', ethertype='IPv4', id='ab2b6385-739c-4447-a4fc-6a42ae56a5bc', |
2200| | normalized_cidr='10.100.0.0/16', protocol='tcp', remote_ip_prefix='10.100.0.0/16', standard_attr_id='4905761', |
2201| | updated_at='2024-05-29T12:35:27Z' |
2202| | created_at='2024-05-29T12:35:26Z', direction='ingress', ethertype='IPv4', id='b0b9fead-a55c-4bdb-80e5-cc1a4b5de60d', |
2203| | protocol='icmp', standard_attr_id='4905743', updated_at='2024-05-29T12:35:26Z' |
2204| | created_at='2024-05-29T12:35:26Z', direction='ingress', ethertype='IPv4', id='ba516a3d-15c1-4b83-87df-b6126dee1aba', |
2205| | protocol='tcp', remote_group_id='9b1a804d-0fad-4ced-a18e-f007b4bf8042', standard_attr_id='4905752', |
2206| | updated_at='2024-05-29T12:35:26Z' |
2207| | created_at='2024-05-29T12:35:26Z', direction='ingress', ethertype='IPv4', id='dc92de92-3835-47a6-9c39-2351950a8917', |
2208| | protocol='udp', remote_group_id='9b1a804d-0fad-4ced-a18e-f007b4bf8042', standard_attr_id='4905755', |
2209| | updated_at='2024-05-29T12:35:26Z' |
2210| | created_at='2024-05-29T12:35:26Z', direction='ingress', ethertype='IPv4', id='ebd1174d-c466-466e-9633-7552576cd9b8', |
2211| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4905746', updated_at='2024-05-29T12:35:26Z' |
2212| | created_at='2024-05-29T12:35:27Z', direction='ingress', ethertype='IPv4', id='ff5d854e-b011-404a-846b-259647a56672', |
2213| | protocol='tcp', remote_group_id='55c2dd0b-7007-494b-b629-649d040d098d', standard_attr_id='4905764', |
2214| | updated_at='2024-05-29T12:35:27Z' |
2215| shared | False |
2216| stateful | True |
2217| tags | [] |
2218| updated_at | 2024-05-29T12:35:27Z |
2219+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2220wmcs-openstack security group delete 55c2dd0b-7007-494b-b629-649d040d098d
2221sg: 56760fee-cbd1-41f0-b997-b2e90463c1cc project: pawsdev
2222delete sg 56760fee-cbd1-41f0-b997-b2e90463c1cc because project pawsdev doesn't exists
2223+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2224| Field | Value |
2225+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2226| created_at | 2024-01-25T11:22:29Z |
2227| description | ALLOW IPv4 tcp from 172.16.0.0/12 |
2228| id | 56760fee-cbd1-41f0-b997-b2e90463c1cc |
2229| name | local |
2230| project_id | pawsdev |
2231| revision_number | 2 |
2232| rules | created_at='2024-01-25T11:22:54Z', direction='ingress', ethertype='IPv4', id='47d72eb6-cf73-4de6-9f2a-1f39695f3ca3', |
2233| | normalized_cidr='172.16.0.0/12', protocol='tcp', remote_ip_prefix='172.16.0.0/12', standard_attr_id='4849444', |
2234| | updated_at='2024-01-25T11:22:54Z' |
2235| | created_at='2024-01-25T11:22:29Z', direction='egress', ethertype='IPv6', id='4d51712f-fae3-4fbb-93be-ae0f7fce86e0', |
2236| | standard_attr_id='4849441', updated_at='2024-01-25T11:22:29Z' |
2237| | created_at='2024-01-25T11:22:29Z', direction='egress', ethertype='IPv4', id='b896c80b-2e79-43ef-b5ab-f0d5d7730b6c', |
2238| | standard_attr_id='4849438', updated_at='2024-01-25T11:22:29Z' |
2239| shared | False |
2240| stateful | True |
2241| tags | [] |
2242| updated_at | 2024-01-25T11:22:54Z |
2243+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2244wmcs-openstack security group delete 56760fee-cbd1-41f0-b997-b2e90463c1cc
2245sg: 577a78d1-305c-4b7e-950a-37c2f6e6ca3a project: trove
2246sg: 577c3a39-5bef-434b-9eee-5b495bdbd1ee project: ldaptest5
2247delete sg 577c3a39-5bef-434b-9eee-5b495bdbd1ee because project ldaptest5 doesn't exists
2248+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2249| Field | Value |
2250+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2251| created_at | 2020-06-29T22:13:08Z |
2252| description | Default security group |
2253| id | 577c3a39-5bef-434b-9eee-5b495bdbd1ee |
2254| name | default |
2255| project_id | ldaptest5 |
2256| revision_number | 6 |
2257| rules | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='ingress', ethertype='IPv4', |
2258| | id='04e436ec-b4dc-41cd-9643-89cd8e542c82', port_range_max='22', port_range_min='22', protocol='tcp', |
2259| | remote_group_id='577c3a39-5bef-434b-9eee-5b495bdbd1ee', standard_attr_id='1821', updated_at='2020-06-29T22:13:08Z' |
2260| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='ingress', ethertype='IPv4', |
2261| | id='11012138-b166-49c9-8a82-327da7694703', port_range_max='65535', port_range_min='1', protocol='udp', |
2262| | remote_group_id='577c3a39-5bef-434b-9eee-5b495bdbd1ee', standard_attr_id='1824', updated_at='2020-06-29T22:13:08Z' |
2263| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='ingress', ethertype='IPv4', |
2264| | id='118b3b62-f1f7-44e8-a397-db48231f49cb', protocol='icmp', remote_group_id='577c3a39-5bef-434b-9eee-5b495bdbd1ee', |
2265| | standard_attr_id='1827', updated_at='2020-06-29T22:13:08Z' |
2266| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='ingress', ethertype='IPv4', |
2267| | id='1721b37e-a81a-40f9-9572-4484e8bee64d', remote_group_id='577c3a39-5bef-434b-9eee-5b495bdbd1ee', |
2268| | standard_attr_id='1803', updated_at='2020-06-29T22:13:08Z' |
2269| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='ingress', ethertype='IPv4', id='1c2c25be- |
2270| | cdae-4060-8596-16431dcc85f8', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2271| | standard_attr_id='1815', updated_at='2020-06-29T22:13:08Z' |
2272| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='ingress', ethertype='IPv6', |
2273| | id='53aece07-5759-4768-b424-7f20e4517497', remote_group_id='577c3a39-5bef-434b-9eee-5b495bdbd1ee', |
2274| | standard_attr_id='1809', updated_at='2020-06-29T22:13:08Z' |
2275| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='ingress', ethertype='IPv4', |
2276| | id='6794865f-4290-4bfd-a7bd-108a05bd3bfb', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
2277| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1818', updated_at='2020-06-29T22:13:08Z' |
2278| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='egress', ethertype='IPv6', |
2279| | id='6f441b9e-771a-42df-a1d0-cc3427ef3af9', standard_attr_id='1812', updated_at='2020-06-29T22:13:08Z' |
2280| | belongs_to_default_sg='True', created_at='2020-06-29T22:13:08Z', direction='egress', ethertype='IPv4', |
2281| | id='eb07c69b-ca32-4093-b472-30b1addb0e07', standard_attr_id='1806', updated_at='2020-06-29T22:13:08Z' |
2282| shared | False |
2283| stateful | True |
2284| tags | [] |
2285| updated_at | 2020-06-29T22:13:08Z |
2286+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2287wmcs-openstack security group delete 577c3a39-5bef-434b-9eee-5b495bdbd1ee
2288sg: 5b7825d1-0692-4380-8bb8-d1cd971afb6c project: trove
2289sg: 5c4ad166-cc1c-4559-bc01-26568b5af2fa project: admin-monitoring
2290sg: 5f0311fc-0282-4aeb-baad-47138064050a project: proxy-codfw1dev
2291sg: 60659a7a-a925-4bb8-8397-9753a45ede9a project: admin
2292sg: 6167edf8-87a0-457a-935d-7fd7fb6e22b2 project: admin
2293sg: 653c4126-884e-439d-9a67-ce8d6fac6347 project: ocata-test-110
2294delete sg 653c4126-884e-439d-9a67-ce8d6fac6347 because project ocata-test-110 doesn't exists
2295+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2296| Field | Value |
2297+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2298| created_at | 2019-12-03T13:32:24Z |
2299| description | Default security group |
2300| id | 653c4126-884e-439d-9a67-ce8d6fac6347 |
2301| name | default |
2302| project_id | ocata-test-110 |
2303| revision_number | 6 |
2304| rules | belongs_to_default_sg='True', created_at='2019-12-03T13:32:24Z', direction='ingress', ethertype='IPv6', |
2305| | id='04ca70f6-ba32-4554-813e-d4cf422354c0', remote_group_id='653c4126-884e-439d-9a67-ce8d6fac6347', revision_number='1', |
2306| | standard_attr_id='837', updated_at='2019-12-03T13:32:24Z' |
2307| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:26Z', direction='ingress', ethertype='IPv4', |
2308| | id='07d30a55-fbc5-449f-982c-89fe2e9026c6', port_range_max='22', port_range_min='22', protocol='tcp', |
2309| | remote_group_id='653c4126-884e-439d-9a67-ce8d6fac6347', revision_number='1', standard_attr_id='841', |
2310| | updated_at='2019-12-03T13:32:26Z' |
2311| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:27Z', direction='ingress', ethertype='IPv4', |
2312| | id='74d590db-8bd2-43ad-815d-9d9aea71c085', protocol='icmp', remote_group_id='653c4126-884e-439d-9a67-ce8d6fac6347', |
2313| | revision_number='1', standard_attr_id='843', updated_at='2019-12-03T13:32:27Z' |
2314| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:25Z', direction='ingress', ethertype='IPv4', |
2315| | id='937a12b4-6a71-4c31-bbd3-c2c9ff90e9be', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2316| | revision_number='1', standard_attr_id='839', updated_at='2019-12-03T13:32:25Z' |
2317| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:26Z', direction='ingress', ethertype='IPv4', |
2318| | id='c274a8a0-3066-4ce4-a828-80ff68aa716f', port_range_max='65535', port_range_min='1', protocol='udp', |
2319| | remote_group_id='653c4126-884e-439d-9a67-ce8d6fac6347', revision_number='1', standard_attr_id='842', |
2320| | updated_at='2019-12-03T13:32:26Z' |
2321| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:24Z', direction='egress', ethertype='IPv4', |
2322| | id='c327e881-46d1-47c4-a5c1-f21745470d16', revision_number='1', standard_attr_id='836', |
2323| | updated_at='2019-12-03T13:32:24Z' |
2324| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:24Z', direction='egress', ethertype='IPv6', |
2325| | id='c7511743-0636-4b90-a1b6-18ba0ba3483a', revision_number='1', standard_attr_id='838', |
2326| | updated_at='2019-12-03T13:32:24Z' |
2327| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:25Z', direction='ingress', ethertype='IPv4', |
2328| | id='dd8e7a0f-305f-4f88-aef0-697de426a385', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2329| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='840', |
2330| | updated_at='2019-12-03T13:32:25Z' |
2331| | belongs_to_default_sg='True', created_at='2019-12-03T13:32:24Z', direction='ingress', ethertype='IPv4', |
2332| | id='f8a7e89d-cc0a-49a4-97e7-5938ec146b71', remote_group_id='653c4126-884e-439d-9a67-ce8d6fac6347', revision_number='1', |
2333| | standard_attr_id='835', updated_at='2019-12-03T13:32:24Z' |
2334| shared | False |
2335| stateful | True |
2336| tags | [] |
2337| updated_at | 2019-12-03T13:32:27Z |
2338+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2339wmcs-openstack security group delete 653c4126-884e-439d-9a67-ce8d6fac6347
2340sg: 668521f2-8e1f-4cc4-8960-db672c9714a2 project: k8s
2341delete sg 668521f2-8e1f-4cc4-8960-db672c9714a2 because project k8s doesn't exists
2342+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2343| Field | Value |
2344+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2345| created_at | 2023-02-14T16:39:29Z |
2346| description | Default security group |
2347| id | 668521f2-8e1f-4cc4-8960-db672c9714a2 |
2348| name | default |
2349| project_id | k8s |
2350| revision_number | 6 |
2351| rules | belongs_to_default_sg='True', created_at='2023-02-14T16:39:29Z', direction='egress', ethertype='IPv4', |
2352| | id='06215a45-ad8d-42da-89ec-bb68c44bb996', standard_attr_id='4742304', updated_at='2023-02-14T16:39:29Z' |
2353| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:29Z', direction='ingress', ethertype='IPv6', |
2354| | id='2d1a916e-2fd0-4db4-be82-18cd2cd13742', remote_group_id='668521f2-8e1f-4cc4-8960-db672c9714a2', |
2355| | standard_attr_id='4742307', updated_at='2023-02-14T16:39:29Z' |
2356| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:30Z', direction='ingress', ethertype='IPv4', |
2357| | id='5f3dac28-d3f3-438f-bd50-99cce1ef273b', port_range_max='22', port_range_min='22', protocol='tcp', |
2358| | remote_group_id='668521f2-8e1f-4cc4-8960-db672c9714a2', standard_attr_id='4742319', updated_at='2023-02-14T16:39:30Z' |
2359| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:29Z', direction='ingress', ethertype='IPv4', |
2360| | id='8a756f06-bcd8-4048-82ae-fe28b26b5306', remote_group_id='668521f2-8e1f-4cc4-8960-db672c9714a2', |
2361| | standard_attr_id='4742301', updated_at='2023-02-14T16:39:29Z' |
2362| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:29Z', direction='ingress', ethertype='IPv4', |
2363| | id='8cb64ba0-9567-4da5-9cf1-25f6a777c03c', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2364| | standard_attr_id='4742313', updated_at='2023-02-14T16:39:29Z' |
2365| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:30Z', direction='ingress', ethertype='IPv4', |
2366| | id='91a42cf2-1fca-4fd2-98a9-3227ea7dc9cf', protocol='udp', remote_group_id='668521f2-8e1f-4cc4-8960-db672c9714a2', |
2367| | standard_attr_id='4742322', updated_at='2023-02-14T16:39:30Z' |
2368| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:30Z', direction='ingress', ethertype='IPv4', |
2369| | id='a6e357cf-0d8b-4647-92bd-c2d3356282e5', protocol='icmp', remote_group_id='668521f2-8e1f-4cc4-8960-db672c9714a2', |
2370| | standard_attr_id='4742325', updated_at='2023-02-14T16:39:30Z' |
2371| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:30Z', direction='ingress', ethertype='IPv4', |
2372| | id='fa7228db-58c6-4ac4-92d2-17bc74981f45', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
2373| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4742316', updated_at='2023-02-14T16:39:30Z' |
2374| | belongs_to_default_sg='True', created_at='2023-02-14T16:39:29Z', direction='egress', ethertype='IPv6', |
2375| | id='fc450251-6ba9-4923-b827-fd94935420bc', standard_attr_id='4742310', updated_at='2023-02-14T16:39:29Z' |
2376| shared | False |
2377| stateful | True |
2378| tags | [] |
2379| updated_at | 2023-02-14T16:39:30Z |
2380+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2381wmcs-openstack security group delete 668521f2-8e1f-4cc4-8960-db672c9714a2
2382sg: 68a9dc73-ab31-4882-83fc-99baae1ec99c project: bad.name
2383delete sg 68a9dc73-ab31-4882-83fc-99baae1ec99c because project bad.name doesn't exists
2384+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2385| Field | Value |
2386+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2387| created_at | 2018-10-25T19:40:59Z |
2388| description | Default security group |
2389| id | 68a9dc73-ab31-4882-83fc-99baae1ec99c |
2390| name | default |
2391| project_id | bad.name |
2392| revision_number | 0 |
2393| rules | belongs_to_default_sg='True', created_at='2018-10-25T19:40:59Z', direction='egress', ethertype='IPv6', |
2394| | id='09413f24-cdf2-4bfb-bd14-39182c5816e8', standard_attr_id='340', updated_at='2018-10-25T19:40:59Z' |
2395| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:00Z', direction='ingress', ethertype='IPv4', |
2396| | id='373024c1-d96f-420f-82b5-1be6a9a552f2', port_range_max='65535', port_range_min='1', protocol='tcp', |
2397| | remote_group_id='68a9dc73-ab31-4882-83fc-99baae1ec99c', standard_attr_id='344', updated_at='2018-10-25T19:41:00Z' |
2398| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:00Z', direction='ingress', ethertype='IPv4', |
2399| | id='38a0e986-e774-439e-9268-de45b9cfc9d3', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2400| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='343', updated_at='2018-10-25T19:41:00Z' |
2401| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:00Z', direction='ingress', ethertype='IPv4', |
2402| | id='4e0e62e1-c51a-4e78-bf24-6eed09a66c0b', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2403| | standard_attr_id='341', updated_at='2018-10-25T19:41:00Z' |
2404| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:01Z', direction='ingress', ethertype='IPv4', |
2405| | id='7a8b6206-0d12-41c5-9176-b9fb447fa87f', port_range_max='65535', port_range_min='1', protocol='udp', |
2406| | remote_group_id='68a9dc73-ab31-4882-83fc-99baae1ec99c', standard_attr_id='345', updated_at='2018-10-25T19:41:01Z' |
2407| | belongs_to_default_sg='True', created_at='2018-10-25T19:40:59Z', direction='egress', ethertype='IPv4', |
2408| | id='895885f4-8151-4b1a-9fb8-b39f4fa3f4fe', standard_attr_id='338', updated_at='2018-10-25T19:40:59Z' |
2409| | belongs_to_default_sg='True', created_at='2018-10-25T19:41:00Z', direction='ingress', ethertype='IPv4', |
2410| | id='ca571abb-a482-4dd3-8b8e-a350ce2e5d2a', normalized_cidr='10.0.0.0/8', port_range_max='22', port_range_min='22', |
2411| | protocol='tcp', remote_ip_prefix='10.0.0.0/8', standard_attr_id='342', updated_at='2018-10-25T19:41:00Z' |
2412| | belongs_to_default_sg='True', created_at='2018-10-25T19:40:59Z', direction='ingress', ethertype='IPv4', |
2413| | id='e18b560b-2584-406c-bc83-cfb753c8f2bc', remote_group_id='68a9dc73-ab31-4882-83fc-99baae1ec99c', |
2414| | standard_attr_id='337', updated_at='2018-10-25T19:40:59Z' |
2415| | belongs_to_default_sg='True', created_at='2018-10-25T19:40:59Z', direction='ingress', ethertype='IPv6', |
2416| | id='eabd817f-318b-4b2a-9e1c-150435daedc2', remote_group_id='68a9dc73-ab31-4882-83fc-99baae1ec99c', |
2417| | standard_attr_id='339', updated_at='2018-10-25T19:40:59Z' |
2418| shared | False |
2419| stateful | True |
2420| tags | [] |
2421| updated_at | 2018-10-25T19:40:59Z |
2422+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2423wmcs-openstack security group delete 68a9dc73-ab31-4882-83fc-99baae1ec99c
2424sg: 69576524-5a5a-46d0-a43b-fa8e756ba09d project: e8742908858f4d19860ed33006c870f7
2425delete sg 69576524-5a5a-46d0-a43b-fa8e756ba09d because project e8742908858f4d19860ed33006c870f7 doesn't exists
2426+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2427| Field | Value |
2428+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2429| created_at | 2024-09-25T09:51:47Z |
2430| description | Default security group |
2431| id | 69576524-5a5a-46d0-a43b-fa8e756ba09d |
2432| name | default |
2433| project_id | e8742908858f4d19860ed33006c870f7 |
2434| revision_number | 7 |
2435| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:50Z', direction='ingress', ethertype='IPv4', |
2436| | id='0c2d2013-17fd-4700-ab84-862249af05da', protocol='icmp', remote_group_id='69576524-5a5a-46d0-a43b-fa8e756ba09d', |
2437| | standard_attr_id='4950907', updated_at='2024-09-25T09:51:50Z' |
2438| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
2439| | id='6234fa5a-1358-460e-97e3-1f21547ad19c', remote_group_id='69576524-5a5a-46d0-a43b-fa8e756ba09d', |
2440| | standard_attr_id='4950754', updated_at='2024-09-25T09:51:47Z' |
2441| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
2442| | id='7e94a783-474e-4149-9b40-f3d773f2adcd', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
2443| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950844', updated_at='2024-09-25T09:51:48Z' |
2444| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
2445| | id='8172d076-8d44-4f3b-9219-ade157da592d', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2446| | standard_attr_id='4950790', updated_at='2024-09-25T09:51:48Z' |
2447| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
2448| | id='85711006-8ca5-41c3-8011-cef9b0a55e96', remote_group_id='69576524-5a5a-46d0-a43b-fa8e756ba09d', |
2449| | standard_attr_id='4950757', updated_at='2024-09-25T09:51:47Z' |
2450| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
2451| | id='8c7d428a-4b67-48d8-836b-f7cdc53acd4d', port_range_max='22', port_range_min='22', protocol='tcp', |
2452| | remote_group_id='69576524-5a5a-46d0-a43b-fa8e756ba09d', standard_attr_id='4950865', updated_at='2024-09-25T09:51:49Z' |
2453| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
2454| | id='8e4118ee-a68f-4206-b586-260cd8c0645f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
2455| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950823', updated_at='2024-09-25T09:51:48Z' |
2456| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
2457| | id='dd19547b-2138-49f8-9879-8063a3d08795', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950760', |
2458| | updated_at='2024-09-25T09:51:47Z' |
2459| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
2460| | id='e29fba62-883e-4836-8cee-d6abfe71da85', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
2461| | standard_attr_id='4950763', updated_at='2024-09-25T09:51:47Z' |
2462| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
2463| | id='eac9f282-f7f2-425d-a2e4-c66c19a59871', protocol='udp', remote_group_id='69576524-5a5a-46d0-a43b-fa8e756ba09d', |
2464| | standard_attr_id='4950886', updated_at='2024-09-25T09:51:49Z' |
2465| shared | False |
2466| stateful | True |
2467| tags | [] |
2468| updated_at | 2024-09-25T09:51:50Z |
2469+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2470wmcs-openstack security group delete 69576524-5a5a-46d0-a43b-fa8e756ba09d
2471sg: 6997b166-b6ac-4472-9d5c-a840be46e94d project: devproject26
2472delete sg 6997b166-b6ac-4472-9d5c-a840be46e94d because project devproject26 doesn't exists
2473+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2474| Field | Value |
2475+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2476| created_at | 2019-05-20T17:23:55Z |
2477| description | Default security group |
2478| id | 6997b166-b6ac-4472-9d5c-a840be46e94d |
2479| name | default |
2480| project_id | devproject26 |
2481| revision_number | 0 |
2482| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:23:55Z', direction='ingress', ethertype='IPv4', |
2483| | id='16ae5e24-20b0-4e87-8722-6cfbe2dac5f8', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2484| | standard_attr_id='499', updated_at='2019-05-20T17:23:55Z' |
2485| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:55Z', direction='ingress', ethertype='IPv4', |
2486| | id='2e5be39c-2de2-4746-9504-8b066067bdbd', port_range_max='22', port_range_min='22', protocol='tcp', |
2487| | remote_group_id='6997b166-b6ac-4472-9d5c-a840be46e94d', standard_attr_id='501', updated_at='2019-05-20T17:23:55Z' |
2488| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:56Z', direction='ingress', ethertype='IPv4', |
2489| | id='6a2a0ca6-3e83-46e1-afb3-51f79a9d8ab0', protocol='icmp', remote_group_id='6997b166-b6ac-4472-9d5c-a840be46e94d', |
2490| | standard_attr_id='503', updated_at='2019-05-20T17:23:56Z' |
2491| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:55Z', direction='egress', ethertype='IPv4', |
2492| | id='80d37a6f-f5b8-4d43-91bc-8b9fda5ec0b6', standard_attr_id='496', updated_at='2019-05-20T17:23:55Z' |
2493| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:55Z', direction='egress', ethertype='IPv6', |
2494| | id='87708f6f-4f07-4582-afda-c9dda8aad7b5', standard_attr_id='498', updated_at='2019-05-20T17:23:55Z' |
2495| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:56Z', direction='ingress', ethertype='IPv4', |
2496| | id='abaf9476-0b5f-4553-a9c3-ad89fc3700b7', port_range_max='65535', port_range_min='1', protocol='udp', |
2497| | remote_group_id='6997b166-b6ac-4472-9d5c-a840be46e94d', standard_attr_id='502', updated_at='2019-05-20T17:23:56Z' |
2498| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:55Z', direction='ingress', ethertype='IPv6', |
2499| | id='cbb348b3-40af-4c7b-ac87-df2444bc032c', remote_group_id='6997b166-b6ac-4472-9d5c-a840be46e94d', |
2500| | standard_attr_id='497', updated_at='2019-05-20T17:23:55Z' |
2501| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:55Z', direction='ingress', ethertype='IPv4', id='d14b89ee- |
2502| | eed6-4c1b-9982-d5fbd61c44b1', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2503| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='500', updated_at='2019-05-20T17:23:55Z' |
2504| | belongs_to_default_sg='True', created_at='2019-05-20T17:23:55Z', direction='ingress', ethertype='IPv4', |
2505| | id='f5f2aa59-e7c9-495a-8196-46e9f97e827c', remote_group_id='6997b166-b6ac-4472-9d5c-a840be46e94d', |
2506| | standard_attr_id='495', updated_at='2019-05-20T17:23:55Z' |
2507| shared | False |
2508| stateful | True |
2509| tags | [] |
2510| updated_at | 2019-05-20T17:23:55Z |
2511+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2512wmcs-openstack security group delete 6997b166-b6ac-4472-9d5c-a840be46e94d
2513sg: 6c95c8d5-214e-40bd-bddc-fb63af1d065e project: policy-test-project
2514delete sg 6c95c8d5-214e-40bd-bddc-fb63af1d065e because project policy-test-project doesn't exists
2515+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2516| Field | Value |
2517+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2518| created_at | 2021-04-13T01:15:45Z |
2519| description | |
2520| id | 6c95c8d5-214e-40bd-bddc-fb63af1d065e |
2521| name | policytest |
2522| project_id | policy-test-project |
2523| revision_number | 1 |
2524| rules | created_at='2021-04-13T01:15:45Z', direction='egress', ethertype='IPv4', id='0b03909f-8693-4b12-b1e6-5d22864ace5f', |
2525| | standard_attr_id='4467', updated_at='2021-04-13T01:15:45Z' |
2526| | created_at='2021-04-13T01:15:45Z', direction='egress', ethertype='IPv6', id='71b11303-f52c-40bc-9c0b-b07a594f7242', |
2527| | standard_attr_id='4470', updated_at='2021-04-13T01:15:45Z' |
2528| shared | False |
2529| stateful | True |
2530| tags | [] |
2531| updated_at | 2021-04-13T01:15:45Z |
2532+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2533wmcs-openstack security group delete 6c95c8d5-214e-40bd-bddc-fb63af1d065e
2534sg: 6ecffd3d-e12a-42f9-8799-6dbcf14801b6 project: labtest-proxy
2535delete sg 6ecffd3d-e12a-42f9-8799-6dbcf14801b6 because project labtest-proxy doesn't exists
2536+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2537| Field | Value |
2538+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2539| created_at | 2018-12-12T21:35:25Z |
2540| description | Default security group |
2541| id | 6ecffd3d-e12a-42f9-8799-6dbcf14801b6 |
2542| name | default |
2543| project_id | labtest-proxy |
2544| revision_number | 0 |
2545| rules | belongs_to_default_sg='True', created_at='2018-12-12T21:35:25Z', direction='egress', ethertype='IPv4', |
2546| | id='741c1966-42bd-4bfe-bf49-09b82ebf6688', standard_attr_id='392', updated_at='2018-12-12T21:35:25Z' |
2547| | belongs_to_default_sg='True', created_at='2018-12-12T21:35:25Z', direction='egress', ethertype='IPv6', |
2548| | id='8e0e31b0-220d-4d77-ba25-9f45f1899e49', standard_attr_id='394', updated_at='2018-12-12T21:35:25Z' |
2549| | belongs_to_default_sg='True', created_at='2018-12-12T21:42:18Z', direction='ingress', ethertype='IPv4', |
2550| | id='9f41c073-dc3d-4e55-b84b-d862ea561645', normalized_cidr='0.0.0.0/0', port_range_max='22', port_range_min='22', |
2551| | protocol='tcp', remote_ip_prefix='0.0.0.0/0', standard_attr_id='396', updated_at='2018-12-12T21:42:18Z' |
2552| | belongs_to_default_sg='True', created_at='2018-12-12T21:35:25Z', direction='ingress', ethertype='IPv4', |
2553| | id='e31ea268-31e1-47af-9fec-dc5d9370b1b2', remote_group_id='6ecffd3d-e12a-42f9-8799-6dbcf14801b6', |
2554| | standard_attr_id='391', updated_at='2018-12-12T21:35:25Z' |
2555| | belongs_to_default_sg='True', created_at='2018-12-12T21:35:25Z', direction='ingress', ethertype='IPv6', |
2556| | id='f8ed1d9a-3b74-49bf-adbf-0b24923bf608', remote_group_id='6ecffd3d-e12a-42f9-8799-6dbcf14801b6', |
2557| | standard_attr_id='393', updated_at='2018-12-12T21:35:25Z' |
2558| shared | False |
2559| stateful | True |
2560| tags | [] |
2561| updated_at | 2018-12-12T21:35:25Z |
2562+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2563wmcs-openstack security group delete 6ecffd3d-e12a-42f9-8799-6dbcf14801b6
2564sg: 6f373d0f-00de-4109-929d-74e0e6536f4c project: trove
2565sg: 6fd2454d-3955-4f40-b29c-5b5a7df42982 project: 88475b7e0b63476f8ad8b97a4a01f3ac
2566delete sg 6fd2454d-3955-4f40-b29c-5b5a7df42982 because project 88475b7e0b63476f8ad8b97a4a01f3ac doesn't exists
2567+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2568| Field | Value |
2569+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2570| created_at | 2024-09-25T09:51:47Z |
2571| description | Default security group |
2572| id | 6fd2454d-3955-4f40-b29c-5b5a7df42982 |
2573| name | default |
2574| project_id | 88475b7e0b63476f8ad8b97a4a01f3ac |
2575| revision_number | 7 |
2576| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
2577| | id='034212e7-7449-4392-afcf-a6d5cf5cfb29', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
2578| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950820', updated_at='2024-09-25T09:51:48Z' |
2579| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
2580| | id='2bdb26a4-680d-42e6-9644-aa68d70b47d8', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
2581| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950799', updated_at='2024-09-25T09:51:48Z' |
2582| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
2583| | id='3a3c5fa0-3350-43d9-9a38-ad762fb0fab5', protocol='icmp', remote_group_id='6fd2454d-3955-4f40-b29c-5b5a7df42982', |
2584| | standard_attr_id='4950889', updated_at='2024-09-25T09:51:49Z' |
2585| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
2586| | id='4f42bd49-f5cf-40d7-86fc-602879fed085', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2587| | standard_attr_id='4950772', updated_at='2024-09-25T09:51:47Z' |
2588| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
2589| | id='53055a2e-503e-4465-8fc4-b211c98e298a', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950697', |
2590| | updated_at='2024-09-25T09:51:47Z' |
2591| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
2592| | id='657eb057-85eb-42b7-b0ad-2f36d02a8cc7', protocol='udp', remote_group_id='6fd2454d-3955-4f40-b29c-5b5a7df42982', |
2593| | standard_attr_id='4950868', updated_at='2024-09-25T09:51:49Z' |
2594| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
2595| | id='6a3d5d8c-6b20-44d7-9759-5762f7bcfebe', remote_group_id='6fd2454d-3955-4f40-b29c-5b5a7df42982', |
2596| | standard_attr_id='4950679', updated_at='2024-09-25T09:51:47Z' |
2597| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
2598| | id='c6babb81-972f-4e7c-9ce3-1d36819ddfd5', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
2599| | standard_attr_id='4950706', updated_at='2024-09-25T09:51:47Z' |
2600| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
2601| | id='ce8ccb14-4be0-4cd1-9f59-d0dcdca965a8', port_range_max='22', port_range_min='22', protocol='tcp', |
2602| | remote_group_id='6fd2454d-3955-4f40-b29c-5b5a7df42982', standard_attr_id='4950841', updated_at='2024-09-25T09:51:48Z' |
2603| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
2604| | id='fca5b772-56b2-4f87-ad1a-cc1e10d56ee6', remote_group_id='6fd2454d-3955-4f40-b29c-5b5a7df42982', |
2605| | standard_attr_id='4950688', updated_at='2024-09-25T09:51:47Z' |
2606| shared | False |
2607| stateful | True |
2608| tags | [] |
2609| updated_at | 2024-09-25T09:51:49Z |
2610+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2611wmcs-openstack security group delete 6fd2454d-3955-4f40-b29c-5b5a7df42982
2612sg: 723c71a6-60a6-4585-bbea-ea1e3acd77d8 project: testlabs
2613sg: 76c352ee-5ced-4820-9cf9-5f0d4f011f2d project: andrewtestproject
2614delete sg 76c352ee-5ced-4820-9cf9-5f0d4f011f2d because project andrewtestproject doesn't exists
2615+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2616| Field | Value |
2617+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2618| created_at | 2018-06-13T14:03:33Z |
2619| description | Default security group |
2620| id | 76c352ee-5ced-4820-9cf9-5f0d4f011f2d |
2621| name | default |
2622| project_id | andrewtestproject |
2623| revision_number | 5 |
2624| rules | belongs_to_default_sg='True', created_at='2019-10-25T20:08:59Z', direction='ingress', ethertype='IPv4', |
2625| | id='23062d6a-8845-4bb0-a217-071f568c5e06', port_range_max='65535', port_range_min='1', protocol='udp', |
2626| | remote_group_id='76c352ee-5ced-4820-9cf9-5f0d4f011f2d', revision_number='1', standard_attr_id='700', |
2627| | updated_at='2019-10-25T20:08:59Z' |
2628| | belongs_to_default_sg='True', created_at='2019-10-25T20:08:59Z', direction='ingress', ethertype='IPv4', |
2629| | id='349e9b40-ccbe-40f8-8d61-51ef34273ba5', port_range_max='22', port_range_min='22', protocol='tcp', |
2630| | remote_group_id='76c352ee-5ced-4820-9cf9-5f0d4f011f2d', revision_number='1', standard_attr_id='699', |
2631| | updated_at='2019-10-25T20:08:59Z' |
2632| | belongs_to_default_sg='True', created_at='2018-10-31T04:17:46Z', direction='ingress', ethertype='IPv4', |
2633| | id='406b6df0-f343-4397-a7e1-1264e8cf04ef', normalized_cidr='0.0.0.0/0', port_range_max='22', port_range_min='22', |
2634| | protocol='tcp', remote_ip_prefix='0.0.0.0/0', standard_attr_id='356', updated_at='2018-10-31T04:17:46Z' |
2635| | belongs_to_default_sg='True', created_at='2018-06-13T14:03:33Z', direction='ingress', ethertype='IPv6', |
2636| | id='424d0057-ab39-4cf2-8b2a-64115c2db7eb', remote_group_id='76c352ee-5ced-4820-9cf9-5f0d4f011f2d', |
2637| | standard_attr_id='147', updated_at='2018-06-13T14:03:33Z' |
2638| | belongs_to_default_sg='True', created_at='2018-06-13T14:03:33Z', direction='ingress', ethertype='IPv4', |
2639| | id='497d0b52-c01f-46c7-bb9f-8a63be2a4589', remote_group_id='76c352ee-5ced-4820-9cf9-5f0d4f011f2d', |
2640| | standard_attr_id='145', updated_at='2018-06-13T14:03:33Z' |
2641| | belongs_to_default_sg='True', created_at='2019-10-25T20:08:58Z', direction='ingress', ethertype='IPv4', |
2642| | id='4eb40893-7b05-48cc-9aea-41b0e38389c5', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2643| | revision_number='1', standard_attr_id='697', updated_at='2019-10-25T20:08:58Z' |
2644| | belongs_to_default_sg='True', created_at='2019-10-25T20:08:59Z', direction='ingress', ethertype='IPv4', |
2645| | id='9cf34dba-2804-42d8-bddf-8745e28ec8af', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2646| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='698', |
2647| | updated_at='2019-10-25T20:08:59Z' |
2648| | belongs_to_default_sg='True', created_at='2018-06-13T14:03:33Z', direction='egress', ethertype='IPv6', |
2649| | id='d7fa0848-ccce-423c-a968-a567a5d590d0', standard_attr_id='148', updated_at='2018-06-13T14:03:33Z' |
2650| | belongs_to_default_sg='True', created_at='2018-06-13T14:03:33Z', direction='egress', ethertype='IPv4', |
2651| | id='e3a955a6-b2c5-41b9-abf9-e0f8371d4750', standard_attr_id='146', updated_at='2018-06-13T14:03:33Z' |
2652| | belongs_to_default_sg='True', created_at='2019-10-25T20:09:00Z', direction='ingress', ethertype='IPv4', |
2653| | id='f652e55a-01c8-413f-b277-311759566dac', protocol='icmp', remote_group_id='76c352ee-5ced-4820-9cf9-5f0d4f011f2d', |
2654| | revision_number='1', standard_attr_id='701', updated_at='2019-10-25T20:09:00Z' |
2655| shared | False |
2656| stateful | True |
2657| tags | [] |
2658| updated_at | 2019-10-25T20:09:00Z |
2659+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2660wmcs-openstack security group delete 76c352ee-5ced-4820-9cf9-5f0d4f011f2d
2661sg: 784cf764-5b14-42c3-802b-a724cb2afb97 project: ocata-test-106
2662delete sg 784cf764-5b14-42c3-802b-a724cb2afb97 because project ocata-test-106 doesn't exists
2663+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2664| Field | Value |
2665+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2666| created_at | 2019-12-03T07:59:39Z |
2667| description | Default security group |
2668| id | 784cf764-5b14-42c3-802b-a724cb2afb97 |
2669| name | default |
2670| project_id | ocata-test-106 |
2671| revision_number | 6 |
2672| rules | belongs_to_default_sg='True', created_at='2019-12-03T07:59:41Z', direction='ingress', ethertype='IPv4', |
2673| | id='1a685614-ec9d-4d2d-82a0-d6814745e908', port_range_max='65535', port_range_min='1', protocol='udp', |
2674| | remote_group_id='784cf764-5b14-42c3-802b-a724cb2afb97', revision_number='1', standard_attr_id='812', |
2675| | updated_at='2019-12-03T07:59:41Z' |
2676| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:39Z', direction='ingress', ethertype='IPv4', |
2677| | id='31473162-4286-4941-8345-20baad18747b', remote_group_id='784cf764-5b14-42c3-802b-a724cb2afb97', revision_number='1', |
2678| | standard_attr_id='805', updated_at='2019-12-03T07:59:39Z' |
2679| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:39Z', direction='ingress', ethertype='IPv6', |
2680| | id='39df49c5-37b2-48ec-88f3-12d7e8c969ff', remote_group_id='784cf764-5b14-42c3-802b-a724cb2afb97', revision_number='1', |
2681| | standard_attr_id='807', updated_at='2019-12-03T07:59:39Z' |
2682| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:40Z', direction='ingress', ethertype='IPv4', |
2683| | id='4789dc8d-2b4f-4dcc-8d1a-75fa17eb50c9', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2684| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='810', |
2685| | updated_at='2019-12-03T07:59:40Z' |
2686| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:39Z', direction='egress', ethertype='IPv4', |
2687| | id='59849f4d-ec26-4733-a6ec-8a6e64fc9172', revision_number='1', standard_attr_id='806', |
2688| | updated_at='2019-12-03T07:59:39Z' |
2689| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:40Z', direction='ingress', ethertype='IPv4', |
2690| | id='7274e55e-1e6e-4192-83ba-7786a9489810', port_range_max='22', port_range_min='22', protocol='tcp', |
2691| | remote_group_id='784cf764-5b14-42c3-802b-a724cb2afb97', revision_number='1', standard_attr_id='811', |
2692| | updated_at='2019-12-03T07:59:40Z' |
2693| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:39Z', direction='ingress', ethertype='IPv4', |
2694| | id='a748f33a-267d-4290-8c1c-1f47a9391f91', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2695| | revision_number='1', standard_attr_id='809', updated_at='2019-12-03T07:59:39Z' |
2696| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:41Z', direction='ingress', ethertype='IPv4', |
2697| | id='b9cb66e6-c0af-4001-8463-2433cae778f2', protocol='icmp', remote_group_id='784cf764-5b14-42c3-802b-a724cb2afb97', |
2698| | revision_number='1', standard_attr_id='813', updated_at='2019-12-03T07:59:41Z' |
2699| | belongs_to_default_sg='True', created_at='2019-12-03T07:59:39Z', direction='egress', ethertype='IPv6', |
2700| | id='d7f2d708-ad4a-46fc-a5af-54e68b858227', revision_number='1', standard_attr_id='808', |
2701| | updated_at='2019-12-03T07:59:39Z' |
2702| shared | False |
2703| stateful | True |
2704| tags | [] |
2705| updated_at | 2019-12-03T07:59:41Z |
2706+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2707wmcs-openstack security group delete 784cf764-5b14-42c3-802b-a724cb2afb97
2708sg: 79acc18b-0166-429c-bb50-a8396a9a0acb project: trove
2709sg: 7b11da35-b688-4253-b091-50bcd1567c97 project: devproject22
2710delete sg 7b11da35-b688-4253-b091-50bcd1567c97 because project devproject22 doesn't exists
2711+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2712| Field | Value |
2713+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2714| created_at | 2019-05-20T17:18:03Z |
2715| description | Default security group |
2716| id | 7b11da35-b688-4253-b091-50bcd1567c97 |
2717| name | default |
2718| project_id | devproject22 |
2719| revision_number | 0 |
2720| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:18:03Z', direction='ingress', ethertype='IPv4', |
2721| | id='6093eaa8-57d1-4de4-8c45-887cf16b0d00', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2722| | standard_attr_id='469', updated_at='2019-05-20T17:18:03Z' |
2723| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:04Z', direction='ingress', ethertype='IPv4', |
2724| | id='63c3f296-b6ea-4945-a6af-949d4731c544', port_range_max='255', port_range_min='1', protocol='icmp', |
2725| | remote_group_id='7b11da35-b688-4253-b091-50bcd1567c97', standard_attr_id='473', updated_at='2019-05-20T17:18:04Z' |
2726| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:03Z', direction='ingress', ethertype='IPv4', |
2727| | id='a1ee0ffb-f0eb-46c7-b15d-3f7626fd2f3b', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2728| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='470', updated_at='2019-05-20T17:18:03Z' |
2729| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:03Z', direction='egress', ethertype='IPv6', |
2730| | id='a389f8e5-a93f-4752-bc66-d4d55498ac75', standard_attr_id='468', updated_at='2019-05-20T17:18:03Z' |
2731| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:03Z', direction='ingress', ethertype='IPv6', |
2732| | id='a6fc6fe8-a7bf-4153-a24c-48a4060570b4', remote_group_id='7b11da35-b688-4253-b091-50bcd1567c97', |
2733| | standard_attr_id='467', updated_at='2019-05-20T17:18:03Z' |
2734| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:04Z', direction='ingress', ethertype='IPv4', |
2735| | id='d6de246b-4587-421e-8f80-da5ce3169cdc', port_range_max='65535', port_range_min='1', protocol='udp', |
2736| | remote_group_id='7b11da35-b688-4253-b091-50bcd1567c97', standard_attr_id='472', updated_at='2019-05-20T17:18:04Z' |
2737| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:03Z', direction='ingress', ethertype='IPv4', |
2738| | id='dcc370c2-ede3-4c8c-ac8a-a403ea5332a3', remote_group_id='7b11da35-b688-4253-b091-50bcd1567c97', |
2739| | standard_attr_id='465', updated_at='2019-05-20T17:18:03Z' |
2740| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:03Z', direction='egress', ethertype='IPv4', |
2741| | id='e1a4a4d3-922c-4883-8a5e-d816e4f068f0', standard_attr_id='466', updated_at='2019-05-20T17:18:03Z' |
2742| | belongs_to_default_sg='True', created_at='2019-05-20T17:18:04Z', direction='ingress', ethertype='IPv4', |
2743| | id='e714db5e-cf4b-4195-86cf-26b6fc69a438', port_range_max='22', port_range_min='22', protocol='tcp', |
2744| | remote_group_id='7b11da35-b688-4253-b091-50bcd1567c97', standard_attr_id='471', updated_at='2019-05-20T17:18:04Z' |
2745| shared | False |
2746| stateful | True |
2747| tags | [] |
2748| updated_at | 2019-05-20T17:18:03Z |
2749+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2750wmcs-openstack security group delete 7b11da35-b688-4253-b091-50bcd1567c97
2751sg: 80b1b98d-5fa2-4362-82fb-ca84b5fc92ba project: keystonehooktest1
2752delete sg 80b1b98d-5fa2-4362-82fb-ca84b5fc92ba because project keystonehooktest1 doesn't exists
2753+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2754| Field | Value |
2755+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2756| created_at | 2019-10-02T19:59:44Z |
2757| description | Default security group |
2758| id | 80b1b98d-5fa2-4362-82fb-ca84b5fc92ba |
2759| name | default |
2760| project_id | keystonehooktest1 |
2761| revision_number | 6 |
2762| rules | belongs_to_default_sg='True', created_at='2019-10-02T19:59:45Z', direction='ingress', ethertype='IPv4', |
2763| | id='193bb46a-91f4-4db8-be8e-689b0c188951', port_range_max='22', port_range_min='22', protocol='tcp', |
2764| | remote_group_id='80b1b98d-5fa2-4362-82fb-ca84b5fc92ba', revision_number='1', standard_attr_id='685', |
2765| | updated_at='2019-10-02T19:59:45Z' |
2766| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:45Z', direction='ingress', ethertype='IPv4', |
2767| | id='3116cc15-67a7-44b5-9114-8584390d08e2', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2768| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='684', |
2769| | updated_at='2019-10-02T19:59:45Z' |
2770| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:46Z', direction='ingress', ethertype='IPv4', |
2771| | id='33c11bf9-90bb-4083-a965-6725a897fcab', protocol='icmp', remote_group_id='80b1b98d-5fa2-4362-82fb-ca84b5fc92ba', |
2772| | revision_number='1', standard_attr_id='687', updated_at='2019-10-02T19:59:46Z' |
2773| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:44Z', direction='egress', ethertype='IPv6', |
2774| | id='34699847-41f5-43dd-b3a1-04b64357f7fe', revision_number='1', standard_attr_id='682', |
2775| | updated_at='2019-10-02T19:59:44Z' |
2776| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:44Z', direction='ingress', ethertype='IPv4', |
2777| | id='76c1d167-0735-4e7f-9082-336ee1128530', remote_group_id='80b1b98d-5fa2-4362-82fb-ca84b5fc92ba', revision_number='1', |
2778| | standard_attr_id='679', updated_at='2019-10-02T19:59:44Z' |
2779| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:44Z', direction='egress', ethertype='IPv4', |
2780| | id='94f10c64-3e76-423c-82c9-4ad66c7265c0', revision_number='1', standard_attr_id='680', |
2781| | updated_at='2019-10-02T19:59:44Z' |
2782| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:44Z', direction='ingress', ethertype='IPv6', |
2783| | id='b35f7c4b-2831-4848-91b5-e41788823ad2', remote_group_id='80b1b98d-5fa2-4362-82fb-ca84b5fc92ba', revision_number='1', |
2784| | standard_attr_id='681', updated_at='2019-10-02T19:59:44Z' |
2785| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:44Z', direction='ingress', ethertype='IPv4', |
2786| | id='cf374a81-8998-48e3-abc4-e9a5e6fe7402', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2787| | revision_number='1', standard_attr_id='683', updated_at='2019-10-02T19:59:44Z' |
2788| | belongs_to_default_sg='True', created_at='2019-10-02T19:59:45Z', direction='ingress', ethertype='IPv4', |
2789| | id='f870ada2-b435-4078-9021-10445c533575', port_range_max='65535', port_range_min='1', protocol='udp', |
2790| | remote_group_id='80b1b98d-5fa2-4362-82fb-ca84b5fc92ba', revision_number='1', standard_attr_id='686', |
2791| | updated_at='2019-10-02T19:59:45Z' |
2792| shared | False |
2793| stateful | True |
2794| tags | [] |
2795| updated_at | 2019-10-02T19:59:46Z |
2796+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2797wmcs-openstack security group delete 80b1b98d-5fa2-4362-82fb-ca84b5fc92ba
2798sg: 81d17c9e-59c0-4128-bf88-a78f13ada5f4 project: tf-infra-dev
2799sg: 81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe project: cloudinfra-dev
2800delete sg 81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe because project cloudinfra-dev doesn't exists
2801+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2802| Field | Value |
2803+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2804| created_at | 2019-09-13T16:32:45Z |
2805| description | Default security group |
2806| id | 81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe |
2807| name | default |
2808| project_id | cloudinfra-dev |
2809| revision_number | 0 |
2810| rules | belongs_to_default_sg='True', created_at='2019-09-13T16:32:46Z', direction='ingress', ethertype='IPv4', |
2811| | id='0a19e6e6-adb2-4526-a467-c4def393a66e', port_range_max='22', port_range_min='22', protocol='tcp', |
2812| | remote_group_id='81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe', standard_attr_id='590', updated_at='2019-09-13T16:32:46Z' |
2813| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:45Z', direction='egress', ethertype='IPv6', |
2814| | id='1fd4ec00-999e-4ee7-8707-cb5f84ecd590', standard_attr_id='587', updated_at='2019-09-13T16:32:45Z' |
2815| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:45Z', direction='ingress', ethertype='IPv4', |
2816| | id='3a1348c7-6a89-48f8-944c-c69cec9a52fd', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2817| | standard_attr_id='588', updated_at='2019-09-13T16:32:45Z' |
2818| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:46Z', direction='ingress', ethertype='IPv4', |
2819| | id='4b43e2cd-b008-4919-bfb2-15d13b84fbd7', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2820| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='589', updated_at='2019-09-13T16:32:46Z' |
2821| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:45Z', direction='ingress', ethertype='IPv6', |
2822| | id='5e46d04d-b253-4529-ae0b-9cc1aca53044', remote_group_id='81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe', |
2823| | standard_attr_id='586', updated_at='2019-09-13T16:32:45Z' |
2824| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:47Z', direction='ingress', ethertype='IPv4', |
2825| | id='874cabca-2eb5-4a90-9321-cf4eafbd91fc', protocol='icmp', remote_group_id='81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe', |
2826| | standard_attr_id='592', updated_at='2019-09-13T16:32:47Z' |
2827| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:45Z', direction='egress', ethertype='IPv4', |
2828| | id='925cc5ed-a244-4813-9e82-cd361a0566bb', standard_attr_id='585', updated_at='2019-09-13T16:32:45Z' |
2829| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:47Z', direction='ingress', ethertype='IPv4', |
2830| | id='e504640b-8d17-4f30-bc7d-845f84a3dd73', port_range_max='65535', port_range_min='1', protocol='udp', |
2831| | remote_group_id='81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe', standard_attr_id='591', updated_at='2019-09-13T16:32:47Z' |
2832| | belongs_to_default_sg='True', created_at='2019-09-13T16:32:45Z', direction='ingress', ethertype='IPv4', |
2833| | id='fd2bad6b-e6c5-4fd1-9731-08cee12d6b2b', remote_group_id='81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe', |
2834| | standard_attr_id='584', updated_at='2019-09-13T16:32:45Z' |
2835| shared | False |
2836| stateful | True |
2837| tags | [] |
2838| updated_at | 2019-09-13T16:32:45Z |
2839+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2840wmcs-openstack security group delete 81ffb56d-e2b7-477a-ac6e-b5e2fe7314fe
2841sg: 8284bb37-9f0b-437c-a2c4-fd3250765d2a project: proxy-codfw1dev
2842sg: 84903141-221f-41fe-94e4-49e1da3bd97e project: newprojectdomaintest4
2843delete sg 84903141-221f-41fe-94e4-49e1da3bd97e because project newprojectdomaintest4 doesn't exists
2844+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2845| Field | Value |
2846+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2847| created_at | 2020-03-02T21:00:30Z |
2848| description | Default security group |
2849| id | 84903141-221f-41fe-94e4-49e1da3bd97e |
2850| name | default |
2851| project_id | newprojectdomaintest4 |
2852| revision_number | 9 |
2853| rules | belongs_to_default_sg='True', created_at='2020-03-02T21:00:30Z', direction='ingress', ethertype='IPv4', |
2854| | id='0f8d5f55-afc4-4fc8-8463-4f08361d8395', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
2855| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1155', updated_at='2020-03-02T21:00:30Z' |
2856| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:31Z', direction='ingress', ethertype='IPv4', |
2857| | id='57a7808e-e572-49c3-9670-30501669f9b8', port_range_max='65535', port_range_min='1', protocol='udp', |
2858| | remote_group_id='84903141-221f-41fe-94e4-49e1da3bd97e', standard_attr_id='1157', updated_at='2020-03-02T21:00:31Z' |
2859| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:30Z', direction='ingress', ethertype='IPv4', |
2860| | id='712f8c79-8869-4cd6-b400-78b97b793504', remote_group_id='84903141-221f-41fe-94e4-49e1da3bd97e', |
2861| | standard_attr_id='1150', updated_at='2020-03-02T21:00:30Z' |
2862| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:30Z', direction='egress', ethertype='IPv6', |
2863| | id='8d697260-f116-4d1f-b7ff-305e3d183346', standard_attr_id='1153', updated_at='2020-03-02T21:00:30Z' |
2864| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:30Z', direction='ingress', ethertype='IPv6', |
2865| | id='9b974919-71d1-4658-ace4-9994025d475e', remote_group_id='84903141-221f-41fe-94e4-49e1da3bd97e', |
2866| | standard_attr_id='1152', updated_at='2020-03-02T21:00:30Z' |
2867| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:32Z', direction='ingress', ethertype='IPv4', |
2868| | id='9eefeca5-54ee-42a8-bfa0-b6175a768f84', protocol='icmp', remote_group_id='84903141-221f-41fe-94e4-49e1da3bd97e', |
2869| | standard_attr_id='1158', updated_at='2020-03-02T21:00:32Z' |
2870| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:31Z', direction='ingress', ethertype='IPv4', |
2871| | id='abfc6cf0-8499-40e1-ac78-56e85e4389de', port_range_max='22', port_range_min='22', protocol='tcp', |
2872| | remote_group_id='84903141-221f-41fe-94e4-49e1da3bd97e', standard_attr_id='1156', updated_at='2020-03-02T21:00:31Z' |
2873| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:30Z', direction='egress', ethertype='IPv4', |
2874| | id='b69e7e11-3d65-49d4-beef-118388c34ec0', standard_attr_id='1151', updated_at='2020-03-02T21:00:30Z' |
2875| | belongs_to_default_sg='True', created_at='2020-03-02T21:00:30Z', direction='ingress', ethertype='IPv4', |
2876| | id='c9ecfc3e-fae3-4386-a985-8294a626ebad', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2877| | standard_attr_id='1154', updated_at='2020-03-02T21:00:30Z' |
2878| shared | False |
2879| stateful | True |
2880| tags | [] |
2881| updated_at | 2020-03-02T21:00:32Z |
2882+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2883wmcs-openstack security group delete 84903141-221f-41fe-94e4-49e1da3bd97e
2884sg: 86818e60-ba5e-48eb-8a53-b109f58858e0 project: testlabs
2885sg: 88caa3b1-fb90-41f5-b879-70bc7e95d0f7 project: ocata-test-113
2886delete sg 88caa3b1-fb90-41f5-b879-70bc7e95d0f7 because project ocata-test-113 doesn't exists
2887+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2888| Field | Value |
2889+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2890| created_at | 2019-12-04T04:04:22Z |
2891| description | Default security group |
2892| id | 88caa3b1-fb90-41f5-b879-70bc7e95d0f7 |
2893| name | default |
2894| project_id | ocata-test-113 |
2895| revision_number | 6 |
2896| rules | belongs_to_default_sg='True', created_at='2019-12-04T04:04:22Z', direction='ingress', ethertype='IPv4', |
2897| | id='0b33fc4d-11dd-421d-9081-4e1f8488135e', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
2898| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='870', |
2899| | updated_at='2019-12-04T04:04:22Z' |
2900| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:22Z', direction='ingress', ethertype='IPv4', |
2901| | id='29384e43-06a2-47e1-8d72-f37c06a964d5', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2902| | revision_number='1', standard_attr_id='869', updated_at='2019-12-04T04:04:22Z' |
2903| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:24Z', direction='ingress', ethertype='IPv4', |
2904| | id='6d8a10e5-ae32-45c0-b6f5-cf77c66cdc29', port_range_max='65535', port_range_min='1', protocol='udp', |
2905| | remote_group_id='88caa3b1-fb90-41f5-b879-70bc7e95d0f7', revision_number='1', standard_attr_id='872', |
2906| | updated_at='2019-12-04T04:04:24Z' |
2907| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:22Z', direction='egress', ethertype='IPv4', |
2908| | id='7864c129-bdf1-4f86-9484-9af944dcc7ea', revision_number='1', standard_attr_id='866', |
2909| | updated_at='2019-12-04T04:04:22Z' |
2910| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:22Z', direction='ingress', ethertype='IPv6', |
2911| | id='9b903382-aaae-4656-a624-3b6a133d90c2', remote_group_id='88caa3b1-fb90-41f5-b879-70bc7e95d0f7', revision_number='1', |
2912| | standard_attr_id='867', updated_at='2019-12-04T04:04:22Z' |
2913| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:23Z', direction='ingress', ethertype='IPv4', |
2914| | id='a4ef7761-9199-404b-a720-ffec70ba82d3', port_range_max='22', port_range_min='22', protocol='tcp', |
2915| | remote_group_id='88caa3b1-fb90-41f5-b879-70bc7e95d0f7', revision_number='1', standard_attr_id='871', |
2916| | updated_at='2019-12-04T04:04:23Z' |
2917| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:24Z', direction='ingress', ethertype='IPv4', |
2918| | id='a6077b69-4416-4be8-9cff-fdb41fb98131', protocol='icmp', remote_group_id='88caa3b1-fb90-41f5-b879-70bc7e95d0f7', |
2919| | revision_number='1', standard_attr_id='873', updated_at='2019-12-04T04:04:24Z' |
2920| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:22Z', direction='ingress', ethertype='IPv4', |
2921| | id='a9123186-7156-493d-81ea-214bf5a82a60', remote_group_id='88caa3b1-fb90-41f5-b879-70bc7e95d0f7', revision_number='1', |
2922| | standard_attr_id='865', updated_at='2019-12-04T04:04:22Z' |
2923| | belongs_to_default_sg='True', created_at='2019-12-04T04:04:22Z', direction='egress', ethertype='IPv6', |
2924| | id='ba33f9b6-dd03-4635-b47e-3b9a6c31d2bb', revision_number='1', standard_attr_id='868', |
2925| | updated_at='2019-12-04T04:04:22Z' |
2926| shared | False |
2927| stateful | True |
2928| tags | [] |
2929| updated_at | 2019-12-04T04:04:24Z |
2930+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2931wmcs-openstack security group delete 88caa3b1-fb90-41f5-b879-70bc7e95d0f7
2932sg: 8acbd9f3-2cf9-42cd-bb9a-a0a1eafa8656 project: trove
2933sg: 8b419f8a-1773-4cf9-93c6-599bb3d349cf project: manilainfra
2934delete sg 8b419f8a-1773-4cf9-93c6-599bb3d349cf because project manilainfra doesn't exists
2935+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2936| Field | Value |
2937+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2938| created_at | 2021-09-29T11:48:47Z |
2939| description | Default security group |
2940| id | 8b419f8a-1773-4cf9-93c6-599bb3d349cf |
2941| name | default |
2942| project_id | manilainfra |
2943| revision_number | 9 |
2944| rules | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='egress', ethertype='IPv4', |
2945| | id='037f7331-e99b-4645-ad7d-3563d956b872', standard_attr_id='2814298', updated_at='2021-09-29T11:48:47Z' |
2946| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='ingress', ethertype='IPv4', |
2947| | id='7ef247db-9d44-4f4f-ae3d-77413ada3597', protocol='udp', remote_group_id='8b419f8a-1773-4cf9-93c6-599bb3d349cf', |
2948| | standard_attr_id='2814322', updated_at='2021-09-29T11:48:47Z' |
2949| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='egress', ethertype='IPv6', |
2950| | id='7f3d54d5-c484-457e-832e-8321eee546c3', standard_attr_id='2814307', updated_at='2021-09-29T11:48:47Z' |
2951| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:48Z', direction='ingress', ethertype='IPv4', |
2952| | id='936ac129-3fd3-4ad5-9a02-53c1dd61d553', protocol='icmp', remote_group_id='8b419f8a-1773-4cf9-93c6-599bb3d349cf', |
2953| | standard_attr_id='2814325', updated_at='2021-09-29T11:48:48Z' |
2954| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='ingress', ethertype='IPv4', |
2955| | id='9c9c0871-ef06-4f36-aec7-a39618e577cd', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
2956| | standard_attr_id='2814313', updated_at='2021-09-29T11:48:47Z' |
2957| | belongs_to_default_sg='True', created_at='2021-09-30T12:04:22Z', description='SSH return', direction='egress', |
2958| | ethertype='IPv4', id='c3fb3c74-6fc5-49fc-8b6a-c1be88e07f02', normalized_cidr='172.16.128.0/24', port_range_max='22', |
2959| | port_range_min='22', protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3134488', |
2960| | updated_at='2021-09-30T12:04:22Z' |
2961| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='ingress', ethertype='IPv6', |
2962| | id='d8b16f0c-3bb0-43d3-aefd-0d33237bd391', remote_group_id='8b419f8a-1773-4cf9-93c6-599bb3d349cf', |
2963| | standard_attr_id='2814301', updated_at='2021-09-29T11:48:47Z' |
2964| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='ingress', ethertype='IPv4', |
2965| | id='dde3a591-fd0b-4ad6-aac9-39520ea1897a', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
2966| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='2814316', updated_at='2021-09-29T11:48:47Z' |
2967| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='ingress', ethertype='IPv4', |
2968| | id='dfe8f940-5154-4fa3-87f8-04cb74a67ffb', remote_group_id='8b419f8a-1773-4cf9-93c6-599bb3d349cf', |
2969| | standard_attr_id='2814295', updated_at='2021-09-29T11:48:47Z' |
2970| | belongs_to_default_sg='True', created_at='2021-09-29T11:48:47Z', direction='ingress', ethertype='IPv4', |
2971| | id='f960d4a3-f948-45a2-99b0-97a4d2c3da1c', port_range_max='22', port_range_min='22', protocol='tcp', |
2972| | remote_group_id='8b419f8a-1773-4cf9-93c6-599bb3d349cf', standard_attr_id='2814319', updated_at='2021-09-29T11:48:47Z' |
2973| shared | False |
2974| stateful | True |
2975| tags | [] |
2976| updated_at | 2021-09-30T12:04:22Z |
2977+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2978wmcs-openstack security group delete 8b419f8a-1773-4cf9-93c6-599bb3d349cf
2979sg: 8ca81a08-4144-4c51-a153-f06c4e612336 project: andrewtestproject
2980delete sg 8ca81a08-4144-4c51-a153-f06c4e612336 because project andrewtestproject doesn't exists
2981+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2982| Field | Value |
2983+-----------------+-------------------------------------------------------------------------------------------------------------------------+
2984| created_at | 2020-07-13T22:11:24Z |
2985| description | |
2986| id | 8ca81a08-4144-4c51-a153-f06c4e612336 |
2987| name | web server |
2988| project_id | andrewtestproject |
2989| revision_number | 5 |
2990| rules | created_at='2020-07-13T22:11:24Z', direction='egress', ethertype='IPv4', id='38d7c19c-8dbe-4fc9-a5bf-d398f54d89ec', |
2991| | standard_attr_id='1871', updated_at='2020-07-13T22:11:24Z' |
2992| | created_at='2020-07-13T22:11:36Z', direction='ingress', ethertype='IPv4', id='c3aaad1a-b5c0-41cc-aca3-3c8b229a0250', |
2993| | normalized_cidr='0.0.0.0/0', port_range_max='80', port_range_min='80', protocol='tcp', remote_ip_prefix='0.0.0.0/0', |
2994| | standard_attr_id='1877', updated_at='2020-07-13T22:11:36Z' |
2995| | created_at='2020-07-13T23:02:41Z', direction='ingress', ethertype='IPv4', id='c5108df3-8620-4804-8f0f-532528e7f77d', |
2996| | normalized_cidr='0.0.0.0/0', port_range_max='443', port_range_min='443', protocol='tcp', remote_ip_prefix='0.0.0.0/0', |
2997| | standard_attr_id='1904', updated_at='2020-07-13T23:02:41Z' |
2998| | created_at='2020-07-13T22:11:24Z', direction='egress', ethertype='IPv6', id='fdedd8d5-1060-4ae1-9ca6-ae220dc281f6', |
2999| | standard_attr_id='1874', updated_at='2020-07-13T22:11:24Z' |
3000| shared | False |
3001| stateful | True |
3002| tags | [] |
3003| updated_at | 2020-07-13T23:02:48Z |
3004+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3005wmcs-openstack security group delete 8ca81a08-4144-4c51-a153-f06c4e612336
3006sg: 8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40 project: 73c58ff44b734639b417f327a23db854
3007delete sg 8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40 because project 73c58ff44b734639b417f327a23db854 doesn't exists
3008+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3009| Field | Value |
3010+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3011| created_at | 2024-08-31T00:00:20Z |
3012| description | Default security group |
3013| id | 8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40 |
3014| name | default |
3015| project_id | 73c58ff44b734639b417f327a23db854 |
3016| revision_number | 6 |
3017| rules | belongs_to_default_sg='True', created_at='2024-08-31T00:00:21Z', direction='ingress', ethertype='IPv4', |
3018| | id='049c2672-6831-4864-90e3-3ca40c357a94', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3019| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4937884', updated_at='2024-08-31T00:00:21Z' |
3020| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:22Z', direction='ingress', ethertype='IPv4', |
3021| | id='3db78074-eb36-44b4-bc82-75421f53cd6b', protocol='icmp', remote_group_id='8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40', |
3022| | standard_attr_id='4937893', updated_at='2024-08-31T00:00:22Z' |
3023| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:20Z', direction='ingress', ethertype='IPv6', |
3024| | id='42d8792f-2a5b-4e9a-a43f-e099d76029e4', remote_group_id='8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40', |
3025| | standard_attr_id='4937875', updated_at='2024-08-31T00:00:20Z' |
3026| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:21Z', direction='ingress', ethertype='IPv4', |
3027| | id='44c9199d-1ddc-438f-9dc3-53f8d4668c5a', port_range_max='22', port_range_min='22', protocol='tcp', |
3028| | remote_group_id='8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40', standard_attr_id='4937887', updated_at='2024-08-31T00:00:21Z' |
3029| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:20Z', direction='ingress', ethertype='IPv4', |
3030| | id='7996efaa-6199-478f-8f57-1e452e76023d', remote_group_id='8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40', |
3031| | standard_attr_id='4937869', updated_at='2024-08-31T00:00:20Z' |
3032| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:21Z', direction='ingress', ethertype='IPv4', |
3033| | id='7df22fd4-ccf1-40bb-85f4-887d4b38c04e', protocol='udp', remote_group_id='8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40', |
3034| | standard_attr_id='4937890', updated_at='2024-08-31T00:00:21Z' |
3035| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:20Z', direction='egress', ethertype='IPv6', |
3036| | id='90482fa1-497c-4658-9e56-6d569d45e410', standard_attr_id='4937872', updated_at='2024-08-31T00:00:20Z' |
3037| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:21Z', direction='ingress', ethertype='IPv4', |
3038| | id='af0305e6-fb3d-42fc-a34c-92df8b86e83b', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3039| | standard_attr_id='4937881', updated_at='2024-08-31T00:00:21Z' |
3040| | belongs_to_default_sg='True', created_at='2024-08-31T00:00:20Z', direction='egress', ethertype='IPv4', |
3041| | id='e9c7f248-b206-416a-a3b2-beb61bd335f7', standard_attr_id='4937878', updated_at='2024-08-31T00:00:20Z' |
3042| shared | False |
3043| stateful | True |
3044| tags | [] |
3045| updated_at | 2024-08-31T00:00:22Z |
3046+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3047wmcs-openstack security group delete 8cdeb3d6-2cf0-4ead-8b25-6245c26f4a40
3048sg: 8d50888d-18bc-4fdc-acab-18d4fc82fafd project: manila
3049delete sg 8d50888d-18bc-4fdc-acab-18d4fc82fafd because project manila doesn't exists
3050+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3051| Field | Value |
3052+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3053| created_at | 2021-09-21T11:05:35Z |
3054| description | Default security group |
3055| id | 8d50888d-18bc-4fdc-acab-18d4fc82fafd |
3056| name | default |
3057| project_id | manila |
3058| revision_number | 6 |
3059| rules | belongs_to_default_sg='True', created_at='2021-09-21T11:05:35Z', direction='ingress', ethertype='IPv4', |
3060| | id='15a4e41f-8b38-47ef-8c32-ce7548fdb40c', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3061| | standard_attr_id='7414', updated_at='2021-09-21T11:05:35Z' |
3062| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:35Z', direction='egress', ethertype='IPv4', |
3063| | id='21ee8db1-2b2a-4616-b792-902c10ba72c3', standard_attr_id='7405', updated_at='2021-09-21T11:05:35Z' |
3064| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:35Z', direction='ingress', ethertype='IPv6', |
3065| | id='5bdf6a5e-65d6-4006-b5ad-355f023667cd', remote_group_id='8d50888d-18bc-4fdc-acab-18d4fc82fafd', |
3066| | standard_attr_id='7408', updated_at='2021-09-21T11:05:35Z' |
3067| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:36Z', direction='ingress', ethertype='IPv4', |
3068| | id='7805c0ae-10ed-47b7-8aaa-2e1204c4b7bf', port_range_max='22', port_range_min='22', protocol='tcp', |
3069| | remote_group_id='8d50888d-18bc-4fdc-acab-18d4fc82fafd', standard_attr_id='7420', updated_at='2021-09-21T11:05:36Z' |
3070| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:35Z', direction='ingress', ethertype='IPv4', |
3071| | id='7f640235-e3ac-4e24-a63b-0c88ca5b172c', remote_group_id='8d50888d-18bc-4fdc-acab-18d4fc82fafd', |
3072| | standard_attr_id='7402', updated_at='2021-09-21T11:05:35Z' |
3073| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:35Z', direction='egress', ethertype='IPv6', |
3074| | id='b807d62e-eb87-45af-885a-da7216a60f11', standard_attr_id='7411', updated_at='2021-09-21T11:05:35Z' |
3075| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:36Z', direction='ingress', ethertype='IPv4', |
3076| | id='babca66e-1766-4377-a888-e5be032af02f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3077| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='7417', updated_at='2021-09-21T11:05:36Z' |
3078| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:36Z', direction='ingress', ethertype='IPv4', |
3079| | id='eef2fe9c-6efa-49ce-84e1-947c61cba2b5', protocol='icmp', remote_group_id='8d50888d-18bc-4fdc-acab-18d4fc82fafd', |
3080| | standard_attr_id='7426', updated_at='2021-09-21T11:05:36Z' |
3081| | belongs_to_default_sg='True', created_at='2021-09-21T11:05:36Z', direction='ingress', ethertype='IPv4', |
3082| | id='fc59f65d-3b0a-473d-b26b-825603d6caba', protocol='udp', remote_group_id='8d50888d-18bc-4fdc-acab-18d4fc82fafd', |
3083| | standard_attr_id='7423', updated_at='2021-09-21T11:05:36Z' |
3084| shared | False |
3085| stateful | True |
3086| tags | [] |
3087| updated_at | 2021-09-21T11:05:36Z |
3088+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3089wmcs-openstack security group delete 8d50888d-18bc-4fdc-acab-18d4fc82fafd
3090sg: 8dc1e6f1-029c-4e2f-92cd-22ca2b991c7b project: trove
3091sg: 8e4fe6ce-f63b-48d4-a0d8-d87b1828de20 project: trove
3092sg: 8e5f5cd7-8dd0-4d04-954d-b12a639af340 project: labtestproject
3093delete sg 8e5f5cd7-8dd0-4d04-954d-b12a639af340 because project labtestproject doesn't exists
3094+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3095| Field | Value |
3096+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3097| created_at | 2018-06-04T19:30:28Z |
3098| description | Default security group |
3099| id | 8e5f5cd7-8dd0-4d04-954d-b12a639af340 |
3100| name | default |
3101| project_id | labtestproject |
3102| revision_number | 0 |
3103| rules | belongs_to_default_sg='True', created_at='2018-06-04T19:30:28Z', direction='egress', ethertype='IPv4', |
3104| | id='0c4a9f5e-87e8-4ccc-9038-ec914a7f0b37', standard_attr_id='139', updated_at='2018-06-04T19:30:28Z' |
3105| | belongs_to_default_sg='True', created_at='2018-06-04T19:30:28Z', direction='ingress', ethertype='IPv6', |
3106| | id='0d8195f8-e917-4009-82bc-68f553119074', remote_group_id='8e5f5cd7-8dd0-4d04-954d-b12a639af340', |
3107| | standard_attr_id='140', updated_at='2018-06-04T19:30:28Z' |
3108| | belongs_to_default_sg='True', created_at='2018-06-04T19:30:28Z', direction='ingress', ethertype='IPv4', |
3109| | id='4a3778a7-2182-4c35-894a-883bb23fda5b', remote_group_id='8e5f5cd7-8dd0-4d04-954d-b12a639af340', |
3110| | standard_attr_id='138', updated_at='2018-06-04T19:30:28Z' |
3111| | belongs_to_default_sg='True', created_at='2018-06-04T19:30:28Z', direction='egress', ethertype='IPv6', |
3112| | id='912487d5-97b2-4c6e-988b-5c6c5d51217e', standard_attr_id='141', updated_at='2018-06-04T19:30:28Z' |
3113| shared | False |
3114| stateful | True |
3115| tags | [] |
3116| updated_at | 2018-06-04T19:30:28Z |
3117+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3118wmcs-openstack security group delete 8e5f5cd7-8dd0-4d04-954d-b12a639af340
3119sg: 8e85a2f1-c9a2-4f1a-a8a7-a23f803c7747 project: devproject
3120delete sg 8e85a2f1-c9a2-4f1a-a8a7-a23f803c7747 because project devproject doesn't exists
3121+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3122| Field | Value |
3123+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3124| created_at | 2019-05-20T16:13:06Z |
3125| description | Default security group |
3126| id | 8e85a2f1-c9a2-4f1a-a8a7-a23f803c7747 |
3127| name | default |
3128| project_id | devproject |
3129| revision_number | 0 |
3130| rules | belongs_to_default_sg='True', created_at='2019-05-20T16:13:06Z', direction='egress', ethertype='IPv6', |
3131| | id='583674d3-b4dc-43e7-8840-80bfbfe04a2b', standard_attr_id='419', updated_at='2019-05-20T16:13:06Z' |
3132| | belongs_to_default_sg='True', created_at='2019-05-20T16:13:06Z', direction='ingress', ethertype='IPv4', |
3133| | id='9509e85c-2089-4c46-a495-3dff7382cdc8', remote_group_id='8e85a2f1-c9a2-4f1a-a8a7-a23f803c7747', |
3134| | standard_attr_id='416', updated_at='2019-05-20T16:13:06Z' |
3135| | belongs_to_default_sg='True', created_at='2019-05-20T16:13:06Z', direction='egress', ethertype='IPv4', |
3136| | id='b7c3f376-9c0c-49fa-bfc4-0eb063d9ede6', standard_attr_id='417', updated_at='2019-05-20T16:13:06Z' |
3137| | belongs_to_default_sg='True', created_at='2019-05-20T16:13:06Z', direction='ingress', ethertype='IPv6', |
3138| | id='f52687c7-05d5-4eb9-940f-dfc324f09b8f', remote_group_id='8e85a2f1-c9a2-4f1a-a8a7-a23f803c7747', |
3139| | standard_attr_id='418', updated_at='2019-05-20T16:13:06Z' |
3140| shared | False |
3141| stateful | True |
3142| tags | [] |
3143| updated_at | 2019-05-20T16:13:06Z |
3144+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3145wmcs-openstack security group delete 8e85a2f1-c9a2-4f1a-a8a7-a23f803c7747
3146sg: 914a42ea-6845-490e-832a-30d49c46fc91 project: paws-dev
3147delete sg 914a42ea-6845-490e-832a-30d49c46fc91 because project paws-dev doesn't exists
3148+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3149| Field | Value |
3150+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3151| created_at | 2023-09-05T19:42:45Z |
3152| description | |
3153| id | 914a42ea-6845-490e-832a-30d49c46fc91 |
3154| name | paws-dev-pulumi-tszkz3mww33h-secgroup_kube_minion-fzbmr66jbzos |
3155| project_id | paws-dev |
3156| revision_number | 14 |
3157| rules | created_at='2023-09-05T19:42:46Z', direction='ingress', ethertype='IPv4', id='060df166-3598-41f2-9f0e-6acb6087a6bb', |
3158| | protocol='udp', remote_group_id='091ac06d-8fc7-4ac9-b001-bc7c0cc78191', standard_attr_id='4811230', |
3159| | updated_at='2023-09-05T19:42:46Z' |
3160| | created_at='2023-09-05T19:42:45Z', direction='ingress', ethertype='IPv4', id='5809f29f-6177-417a-b35a-a09b303a3832', |
3161| | protocol='tcp', remote_group_id='091ac06d-8fc7-4ac9-b001-bc7c0cc78191', standard_attr_id='4811227', |
3162| | updated_at='2023-09-05T19:42:45Z' |
3163| | created_at='2023-09-05T19:42:45Z', direction='ingress', ethertype='IPv4', id='666e703d-5bb4-4209-b926-8f02ed0524cc', |
3164| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4811224', |
3165| | updated_at='2023-09-05T19:42:45Z' |
3166| | created_at='2023-09-05T19:42:45Z', direction='ingress', ethertype='IPv4', id='8c98ede5-7a47-4288-80af-d9ec19723bbc', |
3167| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4811223', updated_at='2023-09-05T19:42:45Z' |
3168| | created_at='2023-09-05T19:42:45Z', direction='egress', ethertype='IPv6', id='aa56596f-882a-494d-bc78-5c08bc4298bd', |
3169| | standard_attr_id='4811218', updated_at='2023-09-05T19:42:45Z' |
3170| | created_at='2023-09-05T19:42:45Z', direction='egress', ethertype='IPv4', id='bb2c133e-9226-4a1e-95c6-fa51a454b064', |
3171| | standard_attr_id='4811215', updated_at='2023-09-05T19:42:45Z' |
3172| | created_at='2023-09-05T19:42:45Z', direction='ingress', ethertype='IPv4', id='d50b0ce0-8dfc-44f6-939a-534356517fd2', |
3173| | protocol='icmp', standard_attr_id='4811220', updated_at='2023-09-05T19:42:45Z' |
3174| shared | False |
3175| stateful | True |
3176| tags | [] |
3177| updated_at | 2023-11-17T14:12:34Z |
3178+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3179wmcs-openstack security group delete 914a42ea-6845-490e-832a-30d49c46fc91
3180sg: 91794e53-3aab-4b5c-9c63-3822d2cbec79 project: trove
3181sg: 935d5dbe-aa16-42c3-9251-e1dceab7b12f project: trove
3182sg: 942f85da-16cb-41af-8d9a-da4fea2ffbeb project: ldaptestproject4
3183delete sg 942f85da-16cb-41af-8d9a-da4fea2ffbeb because project ldaptestproject4 doesn't exists
3184+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3185| Field | Value |
3186+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3187| created_at | 2020-04-06T23:46:28Z |
3188| description | Default security group |
3189| id | 942f85da-16cb-41af-8d9a-da4fea2ffbeb |
3190| name | default |
3191| project_id | ldaptestproject4 |
3192| revision_number | 6 |
3193| rules | belongs_to_default_sg='True', created_at='2020-04-06T23:46:28Z', direction='ingress', ethertype='IPv6', |
3194| | id='0d91af8f-6870-4b32-83f7-8f0220f6e40e', remote_group_id='942f85da-16cb-41af-8d9a-da4fea2ffbeb', |
3195| | standard_attr_id='1262', updated_at='2020-04-06T23:46:28Z' |
3196| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:28Z', direction='ingress', ethertype='IPv4', |
3197| | id='18f8bb06-2988-4dc4-99bb-20f2999f8620', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3198| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1265', updated_at='2020-04-06T23:46:28Z' |
3199| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:28Z', direction='egress', ethertype='IPv4', |
3200| | id='2bce0390-0bc1-4dd9-8b5e-435510d979aa', standard_attr_id='1261', updated_at='2020-04-06T23:46:28Z' |
3201| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:28Z', direction='egress', ethertype='IPv6', id='88b483cd- |
3202| | bbbb-4eb4-a44b-20775cd65e37', standard_attr_id='1263', updated_at='2020-04-06T23:46:28Z' |
3203| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:28Z', direction='ingress', ethertype='IPv4', |
3204| | id='9ffbe137-fbc7-4866-afe7-65e8fb65826e', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3205| | standard_attr_id='1264', updated_at='2020-04-06T23:46:28Z' |
3206| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:29Z', direction='ingress', ethertype='IPv4', |
3207| | id='a61be654-50e3-4cae-b8f2-784232585207', port_range_max='65535', port_range_min='1', protocol='udp', |
3208| | remote_group_id='942f85da-16cb-41af-8d9a-da4fea2ffbeb', standard_attr_id='1267', updated_at='2020-04-06T23:46:29Z' |
3209| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:30Z', direction='ingress', ethertype='IPv4', |
3210| | id='a8ca0842-0057-4633-b2d2-71160b3a88e4', protocol='icmp', remote_group_id='942f85da-16cb-41af-8d9a-da4fea2ffbeb', |
3211| | standard_attr_id='1268', updated_at='2020-04-06T23:46:30Z' |
3212| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:29Z', direction='ingress', ethertype='IPv4', |
3213| | id='d53372e6-06d4-4782-ac29-1e731aaedb44', port_range_max='22', port_range_min='22', protocol='tcp', |
3214| | remote_group_id='942f85da-16cb-41af-8d9a-da4fea2ffbeb', standard_attr_id='1266', updated_at='2020-04-06T23:46:29Z' |
3215| | belongs_to_default_sg='True', created_at='2020-04-06T23:46:28Z', direction='ingress', ethertype='IPv4', |
3216| | id='e4dfe3d7-b980-4bfa-b094-75b45ea30cb5', remote_group_id='942f85da-16cb-41af-8d9a-da4fea2ffbeb', |
3217| | standard_attr_id='1260', updated_at='2020-04-06T23:46:28Z' |
3218| shared | False |
3219| stateful | True |
3220| tags | [] |
3221| updated_at | 2020-04-06T23:46:30Z |
3222+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3223wmcs-openstack security group delete 942f85da-16cb-41af-8d9a-da4fea2ffbeb
3224sg: 97049b80-48e5-4a33-8853-458f99df8757 project: service
3225sg: 97b3ad02-bad3-4ea8-a9fa-5cfd968afccc project: ussuriprojecttest7
3226delete sg 97b3ad02-bad3-4ea8-a9fa-5cfd968afccc because project ussuriprojecttest7 doesn't exists
3227+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3228| Field | Value |
3229+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3230| created_at | 2021-04-07T11:57:49Z |
3231| description | Default security group |
3232| id | 97b3ad02-bad3-4ea8-a9fa-5cfd968afccc |
3233| name | default |
3234| project_id | ussuriprojecttest7 |
3235| revision_number | 6 |
3236| rules | belongs_to_default_sg='True', created_at='2021-04-07T11:57:49Z', direction='ingress', ethertype='IPv4', |
3237| | id='37c78c13-3299-4b9e-a8d6-5c3d5c67f171', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3238| | standard_attr_id='3765', updated_at='2021-04-07T11:57:49Z' |
3239| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:50Z', direction='ingress', ethertype='IPv4', |
3240| | id='3f652d21-e632-471d-b6e1-ff1b0f0cd41e', protocol='udp', remote_group_id='97b3ad02-bad3-4ea8-a9fa-5cfd968afccc', |
3241| | standard_attr_id='3774', updated_at='2021-04-07T11:57:50Z' |
3242| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:50Z', direction='ingress', ethertype='IPv4', id='ab078adf- |
3243| | eaa4-4b3a-a3a0-5f615c1b5930', protocol='icmp', remote_group_id='97b3ad02-bad3-4ea8-a9fa-5cfd968afccc', |
3244| | standard_attr_id='3777', updated_at='2021-04-07T11:57:50Z' |
3245| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:49Z', direction='ingress', ethertype='IPv4', |
3246| | id='ac6ffcf7-f84e-4155-bd1f-ec713d193daa', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3247| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3768', updated_at='2021-04-07T11:57:49Z' |
3248| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:49Z', direction='egress', ethertype='IPv4', |
3249| | id='b4bab191-3e2d-41bd-b65e-1e41da39a227', standard_attr_id='3756', updated_at='2021-04-07T11:57:49Z' |
3250| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:49Z', direction='ingress', ethertype='IPv4', |
3251| | id='d7188712-1311-49f0-80dd-9c63141ccb31', port_range_max='22', port_range_min='22', protocol='tcp', |
3252| | remote_group_id='97b3ad02-bad3-4ea8-a9fa-5cfd968afccc', standard_attr_id='3771', updated_at='2021-04-07T11:57:49Z' |
3253| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:49Z', direction='ingress', ethertype='IPv6', |
3254| | id='d935e631-33f2-4a6c-9912-7cb8a52f98a9', remote_group_id='97b3ad02-bad3-4ea8-a9fa-5cfd968afccc', |
3255| | standard_attr_id='3759', updated_at='2021-04-07T11:57:49Z' |
3256| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:49Z', direction='ingress', ethertype='IPv4', id='f57dedac- |
3257| | eba6-4379-a2e0-28d7418fb9d3', remote_group_id='97b3ad02-bad3-4ea8-a9fa-5cfd968afccc', standard_attr_id='3753', |
3258| | updated_at='2021-04-07T11:57:49Z' |
3259| | belongs_to_default_sg='True', created_at='2021-04-07T11:57:49Z', direction='egress', ethertype='IPv6', |
3260| | id='fdaadd58-cf46-46eb-8f1e-171637ce988d', standard_attr_id='3762', updated_at='2021-04-07T11:57:49Z' |
3261| shared | False |
3262| stateful | True |
3263| tags | [] |
3264| updated_at | 2021-04-07T11:57:50Z |
3265+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3266wmcs-openstack security group delete 97b3ad02-bad3-4ea8-a9fa-5cfd968afccc
3267sg: 9b1a804d-0fad-4ced-a18e-f007b4bf8042 project: pawsdev
3268delete sg 9b1a804d-0fad-4ced-a18e-f007b4bf8042 because project pawsdev doesn't exists
3269+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3270| Field | Value |
3271+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3272| created_at | 2024-05-29T12:35:23Z |
3273| description | |
3274| id | 9b1a804d-0fad-4ced-a18e-f007b4bf8042 |
3275| name | paws-dev-126-1-ded26dmgvj7d-secgroup_kube_master-yutdci6mw2ul |
3276| project_id | pawsdev |
3277| revision_number | 15 |
3278| rules | created_at='2024-05-29T12:35:24Z', direction='ingress', ethertype='IPv4', id='03466baf-2b75-4743-84af-7e118c4516e3', |
3279| | port_range_max='8080', port_range_min='8080', protocol='tcp', standard_attr_id='4905710', |
3280| | updated_at='2024-05-29T12:35:24Z' |
3281| | created_at='2024-05-29T12:35:24Z', direction='ingress', ethertype='IPv4', id='28f1bd50-ad0f-4a4e-b876-be99fa73dd1a', |
3282| | port_range_max='2380', port_range_min='2380', protocol='tcp', standard_attr_id='4905716', |
3283| | updated_at='2024-05-29T12:35:24Z' |
3284| | created_at='2024-05-29T12:35:24Z', direction='ingress', ethertype='IPv4', id='353f72d1-4eb9-413c-b3b5-64783d81822f', |
3285| | port_range_max='2379', port_range_min='2379', protocol='tcp', standard_attr_id='4905713', |
3286| | updated_at='2024-05-29T12:35:24Z' |
3287| | created_at='2024-05-29T12:35:23Z', direction='ingress', ethertype='IPv4', id='48d7c96d-dc0a-4205-8e79-32facbd79442', |
3288| | port_range_max='53', port_range_min='53', protocol='udp', standard_attr_id='4905701', updated_at='2024-05-29T12:35:23Z' |
3289| | created_at='2024-05-29T12:35:23Z', direction='ingress', ethertype='IPv4', id='52d5a5bb-22e7-4e77-8548-9cbee4a92984', |
3290| | port_range_max='53', port_range_min='53', protocol='tcp', standard_attr_id='4905698', updated_at='2024-05-29T12:35:23Z' |
3291| | created_at='2024-05-29T12:35:25Z', direction='ingress', ethertype='IPv4', id='52fb47c2-9411-4a57-a96c-9be7cc97c90f', |
3292| | port_range_max='9100', port_range_min='9100', protocol='tcp', standard_attr_id='4905722', |
3293| | updated_at='2024-05-29T12:35:25Z' |
3294| | created_at='2024-05-29T12:35:23Z', direction='ingress', ethertype='IPv4', id='5708a8e3-a769-4026-89d8-41d9f0013369', |
3295| | protocol='icmp', standard_attr_id='4905692', updated_at='2024-05-29T12:35:23Z' |
3296| | created_at='2024-05-29T12:35:23Z', direction='ingress', ethertype='IPv4', id='71854a76-3689-4cb1-b577-97c888dc00bd', |
3297| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4905695', updated_at='2024-05-29T12:35:23Z' |
3298| | created_at='2024-05-29T12:35:23Z', direction='egress', ethertype='IPv4', id='7460b42c-26ee-4a5f-b39d-4a7faec22bf8', |
3299| | standard_attr_id='4905689', updated_at='2024-05-29T12:35:23Z' |
3300| | created_at='2024-05-29T12:35:23Z', direction='egress', ethertype='IPv6', id='8cbf057d-9d1f-4e4b-a66c-a89dc18347d7', |
3301| | standard_attr_id='4905686', updated_at='2024-05-29T12:35:23Z' |
3302| | created_at='2024-05-29T12:35:25Z', direction='ingress', ethertype='IPv4', id='bb229ae7-83f6-425e-b5e1-9fb9196b0980', |
3303| | port_range_max='8472', port_range_min='8472', protocol='udp', standard_attr_id='4905731', |
3304| | updated_at='2024-05-29T12:35:25Z' |
3305| | created_at='2024-05-29T12:35:24Z', direction='ingress', ethertype='IPv4', id='cf0566f9-b2a5-4a7e-83a9-b26df98d3afc', |
3306| | port_range_max='7080', port_range_min='7080', protocol='tcp', standard_attr_id='4905707', |
3307| | updated_at='2024-05-29T12:35:24Z' |
3308| | created_at='2024-05-29T12:35:24Z', direction='ingress', ethertype='IPv4', id='dc0a887b-4c8f-444c-9b9c-9234a41a61f8', |
3309| | port_range_max='179', port_range_min='179', protocol='tcp', standard_attr_id='4905704', |
3310| | updated_at='2024-05-29T12:35:24Z' |
3311| | created_at='2024-05-29T12:35:24Z', direction='ingress', ethertype='IPv4', id='ea9aefc8-5168-4348-9c0a-c82b35b25475', |
3312| | port_range_max='6443', port_range_min='6443', protocol='tcp', standard_attr_id='4905719', |
3313| | updated_at='2024-05-29T12:35:24Z' |
3314| | created_at='2024-05-29T12:35:25Z', direction='ingress', ethertype='IPv4', id='f9214e8d-adc7-426e-b9c1-01ff4df23f07', |
3315| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4905728', |
3316| | updated_at='2024-05-29T12:35:25Z' |
3317| | created_at='2024-05-29T12:35:25Z', direction='ingress', ethertype='IPv4', id='fb2034af-06e4-46b4-b583-f01b30b3516c', |
3318| | port_range_max='10250', port_range_min='10250', protocol='tcp', standard_attr_id='4905725', |
3319| | updated_at='2024-05-29T12:35:25Z' |
3320| shared | False |
3321| stateful | True |
3322| tags | [] |
3323| updated_at | 2024-05-29T12:35:25Z |
3324+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3325wmcs-openstack security group delete 9b1a804d-0fad-4ced-a18e-f007b4bf8042
3326sg: 9d1b3b15-db77-4a11-b70f-c24082c224f2 project: 250cf208d26a4469bd2b7181cd06fbdc
3327delete sg 9d1b3b15-db77-4a11-b70f-c24082c224f2 because project 250cf208d26a4469bd2b7181cd06fbdc doesn't exists
3328+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3329| Field | Value |
3330+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3331| created_at | 2024-09-05T00:00:22Z |
3332| description | Default security group |
3333| id | 9d1b3b15-db77-4a11-b70f-c24082c224f2 |
3334| name | default |
3335| project_id | 250cf208d26a4469bd2b7181cd06fbdc |
3336| revision_number | 6 |
3337| rules | belongs_to_default_sg='True', created_at='2024-09-05T00:00:22Z', direction='ingress', ethertype='IPv4', |
3338| | id='23295d86-ce2e-4bcd-8387-f46251eef5cb', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3339| | standard_attr_id='4939444', updated_at='2024-09-05T00:00:22Z' |
3340| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:23Z', direction='ingress', ethertype='IPv4', |
3341| | id='45f56868-9c21-45b8-8c5c-bb10bec8201a', port_range_max='22', port_range_min='22', protocol='tcp', |
3342| | remote_group_id='9d1b3b15-db77-4a11-b70f-c24082c224f2', standard_attr_id='4939450', updated_at='2024-09-05T00:00:23Z' |
3343| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:23Z', direction='ingress', ethertype='IPv4', |
3344| | id='47efea05-f28c-4381-8de8-e3ff5325f508', protocol='icmp', remote_group_id='9d1b3b15-db77-4a11-b70f-c24082c224f2', |
3345| | standard_attr_id='4939456', updated_at='2024-09-05T00:00:23Z' |
3346| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:22Z', direction='ingress', ethertype='IPv4', |
3347| | id='589b1983-f382-4a1f-9201-92117f0f8a31', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3348| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4939447', updated_at='2024-09-05T00:00:22Z' |
3349| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:22Z', direction='egress', ethertype='IPv6', |
3350| | id='6c7d3d77-01bf-44bf-b527-9b2cc5cbc887', standard_attr_id='4939435', updated_at='2024-09-05T00:00:22Z' |
3351| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:22Z', direction='ingress', ethertype='IPv6', |
3352| | id='6d1e4c57-5c43-4bbc-8822-c22374d8514c', remote_group_id='9d1b3b15-db77-4a11-b70f-c24082c224f2', |
3353| | standard_attr_id='4939438', updated_at='2024-09-05T00:00:22Z' |
3354| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:22Z', direction='ingress', ethertype='IPv4', |
3355| | id='a5d492f7-cd03-40dd-99f9-2f0a5de03ea2', remote_group_id='9d1b3b15-db77-4a11-b70f-c24082c224f2', |
3356| | standard_attr_id='4939432', updated_at='2024-09-05T00:00:22Z' |
3357| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:23Z', direction='ingress', ethertype='IPv4', |
3358| | id='cf7ad3c4-46bc-41cf-b384-c9a3f3e2309c', protocol='udp', remote_group_id='9d1b3b15-db77-4a11-b70f-c24082c224f2', |
3359| | standard_attr_id='4939453', updated_at='2024-09-05T00:00:23Z' |
3360| | belongs_to_default_sg='True', created_at='2024-09-05T00:00:22Z', direction='egress', ethertype='IPv4', |
3361| | id='ff302b57-7201-453e-917a-9e80c8b21182', standard_attr_id='4939441', updated_at='2024-09-05T00:00:22Z' |
3362| shared | False |
3363| stateful | True |
3364| tags | [] |
3365| updated_at | 2024-09-05T00:00:23Z |
3366+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3367wmcs-openstack security group delete 9d1b3b15-db77-4a11-b70f-c24082c224f2
3368sg: 9ddb72c3-f9b3-4241-ac33-d61fe9994c8e project: swift
3369delete sg 9ddb72c3-f9b3-4241-ac33-d61fe9994c8e because project swift doesn't exists
3370+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3371| Field | Value |
3372+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3373| created_at | 2021-04-25T15:19:38Z |
3374| description | Default security group |
3375| id | 9ddb72c3-f9b3-4241-ac33-d61fe9994c8e |
3376| name | default |
3377| project_id | swift |
3378| revision_number | 6 |
3379| rules | belongs_to_default_sg='True', created_at='2021-04-25T15:19:38Z', direction='ingress', ethertype='IPv6', |
3380| | id='197b6c3c-86f1-422a-90bd-97adc9293a48', remote_group_id='9ddb72c3-f9b3-4241-ac33-d61fe9994c8e', |
3381| | standard_attr_id='5355', updated_at='2021-04-25T15:19:38Z' |
3382| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:38Z', direction='ingress', ethertype='IPv4', |
3383| | id='39265b2b-dd68-4540-9830-85f918926511', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3384| | standard_attr_id='5361', updated_at='2021-04-25T15:19:38Z' |
3385| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:38Z', direction='egress', ethertype='IPv6', |
3386| | id='7d731a64-b817-4ca2-8974-d8dc79116c02', standard_attr_id='5358', updated_at='2021-04-25T15:19:38Z' |
3387| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:38Z', direction='ingress', ethertype='IPv4', |
3388| | id='911245e4-6e48-493c-8305-980c821d8ac2', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3389| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='5364', updated_at='2021-04-25T15:19:38Z' |
3390| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:38Z', direction='egress', ethertype='IPv4', |
3391| | id='9358818f-45ec-4b87-9870-5ea3b35bd253', standard_attr_id='5352', updated_at='2021-04-25T15:19:38Z' |
3392| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:38Z', direction='ingress', ethertype='IPv4', |
3393| | id='d1f04b30-6694-4036-b8f4-48f807d80426', remote_group_id='9ddb72c3-f9b3-4241-ac33-d61fe9994c8e', |
3394| | standard_attr_id='5349', updated_at='2021-04-25T15:19:38Z' |
3395| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:39Z', direction='ingress', ethertype='IPv4', |
3396| | id='d5489941-c81d-4da4-9063-e677d5942eed', port_range_max='22', port_range_min='22', protocol='tcp', |
3397| | remote_group_id='9ddb72c3-f9b3-4241-ac33-d61fe9994c8e', standard_attr_id='5367', updated_at='2021-04-25T15:19:39Z' |
3398| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:39Z', direction='ingress', ethertype='IPv4', |
3399| | id='d681cd7d-9098-4e40-bcf7-e258cc17169a', protocol='icmp', remote_group_id='9ddb72c3-f9b3-4241-ac33-d61fe9994c8e', |
3400| | standard_attr_id='5373', updated_at='2021-04-25T15:19:39Z' |
3401| | belongs_to_default_sg='True', created_at='2021-04-25T15:19:39Z', direction='ingress', ethertype='IPv4', |
3402| | id='f1c1d8b1-62d5-4530-a852-8990a92e34dc', protocol='udp', remote_group_id='9ddb72c3-f9b3-4241-ac33-d61fe9994c8e', |
3403| | standard_attr_id='5370', updated_at='2021-04-25T15:19:39Z' |
3404| shared | False |
3405| stateful | True |
3406| tags | [] |
3407| updated_at | 2021-04-25T15:19:39Z |
3408+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3409wmcs-openstack security group delete 9ddb72c3-f9b3-4241-ac33-d61fe9994c8e
3410sg: 9ff72815-6d16-41a9-bdf3-caf24a210434 project: trove
3411sg: a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c project: ussuriprojecttest13
3412delete sg a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c because project ussuriprojecttest13 doesn't exists
3413+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3414| Field | Value |
3415+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3416| created_at | 2021-04-07T12:30:39Z |
3417| description | Default security group |
3418| id | a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c |
3419| name | default |
3420| project_id | ussuriprojecttest13 |
3421| revision_number | 6 |
3422| rules | belongs_to_default_sg='True', created_at='2021-04-07T12:30:39Z', direction='ingress', ethertype='IPv4', |
3423| | id='2f374cbf-d5b2-49b7-92e9-7a71135bd8b8', remote_group_id='a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c', |
3424| | standard_attr_id='3933', updated_at='2021-04-07T12:30:39Z' |
3425| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:40Z', direction='ingress', ethertype='IPv4', |
3426| | id='37a7d47a-198f-41a9-ad34-f0dbdee9a875', port_range_max='22', port_range_min='22', protocol='tcp', |
3427| | remote_group_id='a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c', standard_attr_id='3951', updated_at='2021-04-07T12:30:40Z' |
3428| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:39Z', direction='ingress', ethertype='IPv4', |
3429| | id='3ab9b52b-81ae-4b96-806f-f6e807c578f0', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3430| | standard_attr_id='3945', updated_at='2021-04-07T12:30:39Z' |
3431| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:39Z', direction='egress', ethertype='IPv6', |
3432| | id='446be71d-c565-4754-95fa-58989716cfd8', standard_attr_id='3942', updated_at='2021-04-07T12:30:39Z' |
3433| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:40Z', direction='ingress', ethertype='IPv4', |
3434| | id='455b231b-3c19-405e-a8cb-80c4757715cb', protocol='icmp', remote_group_id='a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c', |
3435| | standard_attr_id='3957', updated_at='2021-04-07T12:30:40Z' |
3436| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:39Z', direction='egress', ethertype='IPv4', |
3437| | id='679bb194-55a1-4196-b66e-c8e7ae470130', standard_attr_id='3936', updated_at='2021-04-07T12:30:39Z' |
3438| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:40Z', direction='ingress', ethertype='IPv4', |
3439| | id='87cd8aad-3f7d-4028-af62-443fda84ecbd', protocol='udp', remote_group_id='a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c', |
3440| | standard_attr_id='3954', updated_at='2021-04-07T12:30:40Z' |
3441| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:40Z', direction='ingress', ethertype='IPv4', |
3442| | id='b77f7a8f-e348-4a28-bb61-7d0d2373bddb', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3443| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3948', updated_at='2021-04-07T12:30:40Z' |
3444| | belongs_to_default_sg='True', created_at='2021-04-07T12:30:39Z', direction='ingress', ethertype='IPv6', |
3445| | id='d69b6b2f-d485-4288-9c8b-c079774f54ef', remote_group_id='a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c', |
3446| | standard_attr_id='3939', updated_at='2021-04-07T12:30:39Z' |
3447| shared | False |
3448| stateful | True |
3449| tags | [] |
3450| updated_at | 2021-04-07T12:30:40Z |
3451+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3452wmcs-openstack security group delete a30ab50e-7535-481c-bbd2-2ee4a3ef5b5c
3453sg: a418f5ad-66da-46d4-83ba-b87ba29241ac project: ussuriprojecttest11
3454delete sg a418f5ad-66da-46d4-83ba-b87ba29241ac because project ussuriprojecttest11 doesn't exists
3455+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3456| Field | Value |
3457+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3458| created_at | 2021-04-07T12:24:22Z |
3459| description | Default security group |
3460| id | a418f5ad-66da-46d4-83ba-b87ba29241ac |
3461| name | default |
3462| project_id | ussuriprojecttest11 |
3463| revision_number | 6 |
3464| rules | belongs_to_default_sg='True', created_at='2021-04-07T12:24:22Z', direction='ingress', ethertype='IPv6', |
3465| | id='16ad36a7-cd07-4acf-a805-bf3bda3b6b00', remote_group_id='a418f5ad-66da-46d4-83ba-b87ba29241ac', |
3466| | standard_attr_id='3879', updated_at='2021-04-07T12:24:22Z' |
3467| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:23Z', direction='ingress', ethertype='IPv4', |
3468| | id='4bbdf02b-418d-4a1e-b82d-d38d955c5d6a', port_range_max='22', port_range_min='22', protocol='tcp', |
3469| | remote_group_id='a418f5ad-66da-46d4-83ba-b87ba29241ac', standard_attr_id='3891', updated_at='2021-04-07T12:24:23Z' |
3470| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:23Z', direction='ingress', ethertype='IPv4', |
3471| | id='58bffb50-a6ce-4e34-87d4-a0d2cf467939', protocol='udp', remote_group_id='a418f5ad-66da-46d4-83ba-b87ba29241ac', |
3472| | standard_attr_id='3894', updated_at='2021-04-07T12:24:23Z' |
3473| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:23Z', direction='ingress', ethertype='IPv4', |
3474| | id='80bd9720-b1d9-4ac8-a8f3-8f3881a012ef', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3475| | standard_attr_id='3885', updated_at='2021-04-07T12:24:23Z' |
3476| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:23Z', direction='ingress', ethertype='IPv4', |
3477| | id='95207a58-12be-49af-a1a6-e5c12477f0b4', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3478| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3888', updated_at='2021-04-07T12:24:23Z' |
3479| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:23Z', direction='ingress', ethertype='IPv4', |
3480| | id='9ec54e31-623e-4d02-88e4-acf013c00b5e', protocol='icmp', remote_group_id='a418f5ad-66da-46d4-83ba-b87ba29241ac', |
3481| | standard_attr_id='3897', updated_at='2021-04-07T12:24:23Z' |
3482| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:22Z', direction='ingress', ethertype='IPv4', |
3483| | id='b44b297d-98df-4e8b-9e73-9f6bde06d2f6', remote_group_id='a418f5ad-66da-46d4-83ba-b87ba29241ac', |
3484| | standard_attr_id='3873', updated_at='2021-04-07T12:24:22Z' |
3485| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:22Z', direction='egress', ethertype='IPv6', |
3486| | id='b484e75f-3711-495a-9282-b95039e8f938', standard_attr_id='3882', updated_at='2021-04-07T12:24:22Z' |
3487| | belongs_to_default_sg='True', created_at='2021-04-07T12:24:22Z', direction='egress', ethertype='IPv4', |
3488| | id='f94f66b1-db29-4bf5-8f52-cee77b6139d4', standard_attr_id='3876', updated_at='2021-04-07T12:24:22Z' |
3489| shared | False |
3490| stateful | True |
3491| tags | [] |
3492| updated_at | 2021-04-07T12:24:23Z |
3493+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3494wmcs-openstack security group delete a418f5ad-66da-46d4-83ba-b87ba29241ac
3495sg: a802e974-c4e7-4820-b8f0-d92e5d7987ce project: testtroveproj1
3496delete sg a802e974-c4e7-4820-b8f0-d92e5d7987ce because project testtroveproj1 doesn't exists
3497+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3498| Field | Value |
3499+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3500| created_at | 2023-05-24T16:56:04Z |
3501| description | Default security group |
3502| id | a802e974-c4e7-4820-b8f0-d92e5d7987ce |
3503| name | default |
3504| project_id | testtroveproj1 |
3505| revision_number | 6 |
3506| rules | belongs_to_default_sg='True', created_at='2023-05-24T16:56:04Z', direction='egress', ethertype='IPv6', |
3507| | id='0d61866f-0aa0-4b04-98d5-a9a4ea56b0fe', standard_attr_id='4782289', updated_at='2023-05-24T16:56:04Z' |
3508| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:04Z', direction='ingress', ethertype='IPv4', |
3509| | id='14bae597-d676-4933-a3b6-43b891cd1a3b', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3510| | standard_attr_id='4782292', updated_at='2023-05-24T16:56:04Z' |
3511| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:05Z', direction='ingress', ethertype='IPv4', |
3512| | id='16b930f9-b42a-40ca-bcfd-73e750cee9a8', protocol='udp', remote_group_id='a802e974-c4e7-4820-b8f0-d92e5d7987ce', |
3513| | standard_attr_id='4782301', updated_at='2023-05-24T16:56:05Z' |
3514| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:05Z', direction='ingress', ethertype='IPv4', |
3515| | id='4b5b2502-fbb5-4afb-b754-99833dda7802', port_range_max='22', port_range_min='22', protocol='tcp', |
3516| | remote_group_id='a802e974-c4e7-4820-b8f0-d92e5d7987ce', standard_attr_id='4782298', updated_at='2023-05-24T16:56:05Z' |
3517| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:05Z', direction='ingress', ethertype='IPv4', |
3518| | id='4e6c0243-6e76-4b5f-870d-619c284b6f07', protocol='icmp', remote_group_id='a802e974-c4e7-4820-b8f0-d92e5d7987ce', |
3519| | standard_attr_id='4782304', updated_at='2023-05-24T16:56:05Z' |
3520| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:04Z', direction='ingress', ethertype='IPv4', |
3521| | id='7bec0218-0d42-4f9e-8a18-b5f6b5518a02', remote_group_id='a802e974-c4e7-4820-b8f0-d92e5d7987ce', |
3522| | standard_attr_id='4782280', updated_at='2023-05-24T16:56:04Z' |
3523| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:04Z', direction='egress', ethertype='IPv4', |
3524| | id='ea965f47-a020-4d5c-a93e-cb9bc8e655f0', standard_attr_id='4782283', updated_at='2023-05-24T16:56:04Z' |
3525| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:05Z', direction='ingress', ethertype='IPv4', |
3526| | id='f4a50fd6-6a45-4b7d-aac4-a8aee7e82e62', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3527| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4782295', updated_at='2023-05-24T16:56:05Z' |
3528| | belongs_to_default_sg='True', created_at='2023-05-24T16:56:04Z', direction='ingress', ethertype='IPv6', |
3529| | id='f6e87ba8-88bd-482f-a57a-dccae9368123', remote_group_id='a802e974-c4e7-4820-b8f0-d92e5d7987ce', |
3530| | standard_attr_id='4782286', updated_at='2023-05-24T16:56:04Z' |
3531| shared | False |
3532| stateful | True |
3533| tags | [] |
3534| updated_at | 2023-05-24T16:56:05Z |
3535+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3536wmcs-openstack security group delete a802e974-c4e7-4820-b8f0-d92e5d7987ce
3537sg: aac6cb4f-98f8-4476-8658-078fa6b46d3e project: trove
3538sg: ab308cc5-c920-473b-886a-054d66b0773b project: admin
3539sg: ac1ada68-6a7a-4687-8365-5f555168adee project: ldaptestproject5
3540delete sg ac1ada68-6a7a-4687-8365-5f555168adee because project ldaptestproject5 doesn't exists
3541+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3542| Field | Value |
3543+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3544| created_at | 2020-04-06T23:49:46Z |
3545| description | Default security group |
3546| id | ac1ada68-6a7a-4687-8365-5f555168adee |
3547| name | default |
3548| project_id | ldaptestproject5 |
3549| revision_number | 6 |
3550| rules | belongs_to_default_sg='True', created_at='2020-04-06T23:49:47Z', direction='ingress', ethertype='IPv4', |
3551| | id='252cff7d-ac50-42ff-8143-3c299969bbde', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3552| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1275', updated_at='2020-04-06T23:49:47Z' |
3553| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:46Z', direction='egress', ethertype='IPv6', |
3554| | id='67539d28-0db8-42ef-a670-e943f3d20454', standard_attr_id='1273', updated_at='2020-04-06T23:49:46Z' |
3555| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:48Z', direction='ingress', ethertype='IPv4', |
3556| | id='6cdeb117-2049-45c6-8a54-544cbbee1b8d', protocol='icmp', remote_group_id='ac1ada68-6a7a-4687-8365-5f555168adee', |
3557| | standard_attr_id='1278', updated_at='2020-04-06T23:49:48Z' |
3558| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:46Z', direction='egress', ethertype='IPv4', |
3559| | id='7cdee00c-88a7-4edf-b187-53c38823e5f7', standard_attr_id='1271', updated_at='2020-04-06T23:49:46Z' |
3560| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:46Z', direction='ingress', ethertype='IPv4', |
3561| | id='7f3dd0d2-32fb-474b-b0ca-2fad21ece3cd', remote_group_id='ac1ada68-6a7a-4687-8365-5f555168adee', |
3562| | standard_attr_id='1270', updated_at='2020-04-06T23:49:46Z' |
3563| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:47Z', direction='ingress', ethertype='IPv4', |
3564| | id='8ff9def9-8564-4890-a395-32aa8847fae3', port_range_max='22', port_range_min='22', protocol='tcp', |
3565| | remote_group_id='ac1ada68-6a7a-4687-8365-5f555168adee', standard_attr_id='1276', updated_at='2020-04-06T23:49:47Z' |
3566| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:46Z', direction='ingress', ethertype='IPv4', |
3567| | id='ca95788f-a9b1-4cbd-8c3a-071e4e87b0b1', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3568| | standard_attr_id='1274', updated_at='2020-04-06T23:49:46Z' |
3569| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:46Z', direction='ingress', ethertype='IPv6', |
3570| | id='d1a4f331-6f5a-45c0-a771-8c2f1923118c', remote_group_id='ac1ada68-6a7a-4687-8365-5f555168adee', |
3571| | standard_attr_id='1272', updated_at='2020-04-06T23:49:46Z' |
3572| | belongs_to_default_sg='True', created_at='2020-04-06T23:49:47Z', direction='ingress', ethertype='IPv4', |
3573| | id='ff32cb5d-97c5-44cb-bf55-7003489b32a3', port_range_max='65535', port_range_min='1', protocol='udp', |
3574| | remote_group_id='ac1ada68-6a7a-4687-8365-5f555168adee', standard_attr_id='1277', updated_at='2020-04-06T23:49:47Z' |
3575| shared | False |
3576| stateful | True |
3577| tags | [] |
3578| updated_at | 2020-04-06T23:49:48Z |
3579+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3580wmcs-openstack security group delete ac1ada68-6a7a-4687-8365-5f555168adee
3581sg: ae45ebbb-9a2d-4f61-bf26-4aa3d855166a project: ussuriprojecttest9
3582delete sg ae45ebbb-9a2d-4f61-bf26-4aa3d855166a because project ussuriprojecttest9 doesn't exists
3583+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3584| Field | Value |
3585+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3586| created_at | 2021-04-07T12:13:55Z |
3587| description | Default security group |
3588| id | ae45ebbb-9a2d-4f61-bf26-4aa3d855166a |
3589| name | default |
3590| project_id | ussuriprojecttest9 |
3591| revision_number | 6 |
3592| rules | belongs_to_default_sg='True', created_at='2021-04-07T12:13:55Z', direction='ingress', ethertype='IPv6', |
3593| | id='03206849-ca77-426f-ad6d-e0588027af84', remote_group_id='ae45ebbb-9a2d-4f61-bf26-4aa3d855166a', |
3594| | standard_attr_id='3819', updated_at='2021-04-07T12:13:55Z' |
3595| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:56Z', direction='ingress', ethertype='IPv4', |
3596| | id='2b79fbe8-0df5-47f6-92ae-191cbd8d5f40', port_range_max='22', port_range_min='22', protocol='tcp', |
3597| | remote_group_id='ae45ebbb-9a2d-4f61-bf26-4aa3d855166a', standard_attr_id='3831', updated_at='2021-04-07T12:13:56Z' |
3598| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:56Z', direction='ingress', ethertype='IPv4', |
3599| | id='3599f0b7-0ec7-47d7-927c-357d4df8c191', protocol='udp', remote_group_id='ae45ebbb-9a2d-4f61-bf26-4aa3d855166a', |
3600| | standard_attr_id='3834', updated_at='2021-04-07T12:13:56Z' |
3601| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:55Z', direction='ingress', ethertype='IPv4', |
3602| | id='3af81110-d575-4099-a596-6a0b0036c654', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3603| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3828', updated_at='2021-04-07T12:13:55Z' |
3604| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:55Z', direction='egress', ethertype='IPv4', |
3605| | id='58d2e3f1-5dc0-4712-8253-726a733f023b', standard_attr_id='3816', updated_at='2021-04-07T12:13:55Z' |
3606| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:56Z', direction='ingress', ethertype='IPv4', |
3607| | id='6febb71c-e871-41f8-a266-c9ddb987748d', protocol='icmp', remote_group_id='ae45ebbb-9a2d-4f61-bf26-4aa3d855166a', |
3608| | standard_attr_id='3837', updated_at='2021-04-07T12:13:56Z' |
3609| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:55Z', direction='ingress', ethertype='IPv4', |
3610| | id='76ae4b46-521d-4555-a8b4-b1e4961017ef', remote_group_id='ae45ebbb-9a2d-4f61-bf26-4aa3d855166a', |
3611| | standard_attr_id='3813', updated_at='2021-04-07T12:13:55Z' |
3612| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:55Z', direction='egress', ethertype='IPv6', |
3613| | id='a7c7cdbd-3c5a-4bef-b03c-97f0644a7025', standard_attr_id='3822', updated_at='2021-04-07T12:13:55Z' |
3614| | belongs_to_default_sg='True', created_at='2021-04-07T12:13:55Z', direction='ingress', ethertype='IPv4', |
3615| | id='a9898292-7abf-4c3b-ae2a-5129ac2c651f', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3616| | standard_attr_id='3825', updated_at='2021-04-07T12:13:55Z' |
3617| shared | False |
3618| stateful | True |
3619| tags | [] |
3620| updated_at | 2021-04-07T12:13:56Z |
3621+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3622wmcs-openstack security group delete ae45ebbb-9a2d-4f61-bf26-4aa3d855166a
3623sg: b066d6af-0e40-4a3c-b18a-5bc8d87d7650 project: 94a5bef6c9b24cb986e7dd43794318d8
3624delete sg b066d6af-0e40-4a3c-b18a-5bc8d87d7650 because project 94a5bef6c9b24cb986e7dd43794318d8 doesn't exists
3625+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3626| Field | Value |
3627+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3628| created_at | 2024-09-25T09:51:47Z |
3629| description | Default security group |
3630| id | b066d6af-0e40-4a3c-b18a-5bc8d87d7650 |
3631| name | default |
3632| project_id | 94a5bef6c9b24cb986e7dd43794318d8 |
3633| revision_number | 7 |
3634| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
3635| | id='007608d4-0e8a-4518-9f92-e709ed93b9ca', remote_group_id='b066d6af-0e40-4a3c-b18a-5bc8d87d7650', |
3636| | standard_attr_id='4950718', updated_at='2024-09-25T09:51:47Z' |
3637| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
3638| | id='1a886bcd-277a-4549-aabc-f34c33543c08', protocol='udp', remote_group_id='b066d6af-0e40-4a3c-b18a-5bc8d87d7650', |
3639| | standard_attr_id='4950874', updated_at='2024-09-25T09:51:49Z' |
3640| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
3641| | id='21999815-983b-4de5-8fd3-da4b0f736d3b', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3642| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950802', updated_at='2024-09-25T09:51:48Z' |
3643| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
3644| | id='24d06a72-f339-4772-9a1e-3a1b63581d34', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3645| | standard_attr_id='4950781', updated_at='2024-09-25T09:51:48Z' |
3646| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
3647| | id='3fb2a797-fb0b-4fdc-84cb-8099bbfafe24', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
3648| | standard_attr_id='4950730', updated_at='2024-09-25T09:51:47Z' |
3649| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
3650| | id='70198335-c1f1-4d4e-b715-256761537c96', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
3651| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950826', updated_at='2024-09-25T09:51:48Z' |
3652| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
3653| | id='78b56ae2-e45b-4672-9a95-f2d2c61d27ea', remote_group_id='b066d6af-0e40-4a3c-b18a-5bc8d87d7650', |
3654| | standard_attr_id='4950712', updated_at='2024-09-25T09:51:47Z' |
3655| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
3656| | id='8a02aed2-e2fb-4e32-bba5-69834a1bcc60', protocol='icmp', remote_group_id='b066d6af-0e40-4a3c-b18a-5bc8d87d7650', |
3657| | standard_attr_id='4950901', updated_at='2024-09-25T09:51:49Z' |
3658| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
3659| | id='9862f25b-a2d5-4782-a175-0001d34c2bb7', port_range_max='22', port_range_min='22', protocol='tcp', |
3660| | remote_group_id='b066d6af-0e40-4a3c-b18a-5bc8d87d7650', standard_attr_id='4950850', updated_at='2024-09-25T09:51:49Z' |
3661| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
3662| | id='a93558b1-d4fe-47a2-b5bc-33b9e8430842', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950724', |
3663| | updated_at='2024-09-25T09:51:47Z' |
3664| shared | False |
3665| stateful | True |
3666| tags | [] |
3667| updated_at | 2024-09-25T09:51:49Z |
3668+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3669wmcs-openstack security group delete b066d6af-0e40-4a3c-b18a-5bc8d87d7650
3670sg: b07a3c18-eda9-43a6-9bd2-485f7e9036d1 project: trove
3671sg: b2c5e63a-0978-42bd-b162-e6acf3035518 project: k8s-dev
3672delete sg b2c5e63a-0978-42bd-b162-e6acf3035518 because project k8s-dev doesn't exists
3673+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3674| Field | Value |
3675+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3676| created_at | 2024-05-14T19:53:01Z |
3677| description | |
3678| id | b2c5e63a-0978-42bd-b162-e6acf3035518 |
3679| name | superset-dev-126-1-aloc7ycplvok-secgroup_kube_minion-verbaztgw22d |
3680| project_id | k8s-dev |
3681| revision_number | 10 |
3682| rules | created_at='2024-05-14T19:53:03Z', direction='ingress', ethertype='IPv4', id='04efdbef-f12f-4011-a065-98c18389bb45', |
3683| | protocol='udp', remote_group_id='b2c5e63a-0978-42bd-b162-e6acf3035518', standard_attr_id='4901234', |
3684| | updated_at='2024-05-14T19:53:03Z' |
3685| | created_at='2024-05-14T19:53:03Z', direction='ingress', ethertype='IPv4', id='1df51f85-a94c-4868-94de-8252d2e000ca', |
3686| | protocol='tcp', remote_group_id='b2c5e63a-0978-42bd-b162-e6acf3035518', standard_attr_id='4901237', |
3687| | updated_at='2024-05-14T19:53:03Z' |
3688| | created_at='2024-05-14T19:53:03Z', direction='ingress', ethertype='IPv4', id='44679f77-b39a-40a7-8755-adb025a4799d', |
3689| | normalized_cidr='10.100.0.0/16', protocol='udp', remote_ip_prefix='10.100.0.0/16', standard_attr_id='4901231', |
3690| | updated_at='2024-05-14T19:53:03Z' |
3691| | created_at='2024-05-14T19:53:02Z', direction='ingress', ethertype='IPv4', id='50a8c2ab-463c-4d40-9e7a-82d03ae09a28', |
3692| | protocol='udp', remote_group_id='c58aa988-22f2-40d9-8ceb-3f5ce8d553e7', standard_attr_id='4901225', |
3693| | updated_at='2024-05-14T19:53:02Z' |
3694| | created_at='2024-05-14T19:53:01Z', direction='ingress', ethertype='IPv4', id='74fd62e9-b999-404f-affb-7fe22ba0b149', |
3695| | protocol='icmp', standard_attr_id='4901213', updated_at='2024-05-14T19:53:01Z' |
3696| | created_at='2024-05-14T19:53:02Z', direction='ingress', ethertype='IPv4', id='78fcca09-948a-4509-bfa0-1e6d1ad3da7e', |
3697| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4901219', |
3698| | updated_at='2024-05-14T19:53:02Z' |
3699| | created_at='2024-05-14T19:53:03Z', direction='ingress', ethertype='IPv4', id='7968901c-aa3c-47df-b4d8-9e8f8f3c0c5f', |
3700| | normalized_cidr='10.100.0.0/16', protocol='tcp', remote_ip_prefix='10.100.0.0/16', standard_attr_id='4901228', |
3701| | updated_at='2024-05-14T19:53:03Z' |
3702| | created_at='2024-05-14T19:53:01Z', direction='egress', ethertype='IPv6', id='82786c4b-c97d-405f-8fe6-3b3db84c4f17', |
3703| | standard_attr_id='4901207', updated_at='2024-05-14T19:53:01Z' |
3704| | created_at='2024-05-14T19:53:02Z', direction='ingress', ethertype='IPv4', id='89d1c937-6dea-42af-9dbb-cc63fa96690b', |
3705| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4901216', updated_at='2024-05-14T19:53:02Z' |
3706| | created_at='2024-05-14T19:53:01Z', direction='egress', ethertype='IPv4', id='92ed1ce5-c172-4f5f-99be-6bfc7bd2da6c', |
3707| | standard_attr_id='4901210', updated_at='2024-05-14T19:53:01Z' |
3708| | created_at='2024-05-14T19:53:02Z', direction='ingress', ethertype='IPv4', id='b92144d7-6242-4104-a8a1-210234caa8d4', |
3709| | protocol='tcp', remote_group_id='c58aa988-22f2-40d9-8ceb-3f5ce8d553e7', standard_attr_id='4901222', |
3710| | updated_at='2024-05-14T19:53:02Z' |
3711| shared | False |
3712| stateful | True |
3713| tags | [] |
3714| updated_at | 2024-05-14T19:53:03Z |
3715+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3716wmcs-openstack security group delete b2c5e63a-0978-42bd-b162-e6acf3035518
3717sg: b3b1382d-7a09-4a64-96bd-01354dc3d5aa project: f93ed978bc5943c4b9c3fb1bfc70d3b4
3718delete sg b3b1382d-7a09-4a64-96bd-01354dc3d5aa because project f93ed978bc5943c4b9c3fb1bfc70d3b4 doesn't exists
3719+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3720| Field | Value |
3721+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3722| created_at | 2024-09-06T18:58:47Z |
3723| description | |
3724| id | b3b1382d-7a09-4a64-96bd-01354dc3d5aa |
3725| name | deployment-alpha-wikikube-v127-opu2kaihxmez-secgroup_kube_master-mrazrcwxfu6a |
3726| project_id | f93ed978bc5943c4b9c3fb1bfc70d3b4 |
3727| revision_number | 15 |
3728| rules | created_at='2024-09-06T18:58:49Z', direction='ingress', ethertype='IPv4', id='08db421c-cd77-4057-85a7-594fdbf6d754', |
3729| | port_range_max='7080', port_range_min='7080', protocol='tcp', standard_attr_id='4940746', |
3730| | updated_at='2024-09-06T18:58:49Z' |
3731| | created_at='2024-09-06T18:58:49Z', direction='ingress', ethertype='IPv4', id='131083ec-ce93-45f4-a3c1-9aa4abfa33f3', |
3732| | port_range_max='2379', port_range_min='2379', protocol='tcp', standard_attr_id='4940752', |
3733| | updated_at='2024-09-06T18:58:49Z' |
3734| | created_at='2024-09-06T18:58:47Z', direction='egress', ethertype='IPv6', id='27400ca3-4811-4e08-bf58-e7a13d5150f0', |
3735| | standard_attr_id='4940725', updated_at='2024-09-06T18:58:47Z' |
3736| | created_at='2024-09-06T18:58:49Z', direction='ingress', ethertype='IPv4', id='32e0976e-9eb6-45b4-9e16-1cb5121619b2', |
3737| | port_range_max='8080', port_range_min='8080', protocol='tcp', standard_attr_id='4940749', |
3738| | updated_at='2024-09-06T18:58:49Z' |
3739| | created_at='2024-09-06T18:58:51Z', direction='ingress', ethertype='IPv4', id='398d32c3-2fcd-4bd4-98db-95c95a9aa979', |
3740| | port_range_max='10250', port_range_min='10250', protocol='tcp', standard_attr_id='4940764', |
3741| | updated_at='2024-09-06T18:58:51Z' |
3742| | created_at='2024-09-06T18:58:50Z', direction='ingress', ethertype='IPv4', id='3d45889a-f9bd-431f-b3b5-75754bd06ffe', |
3743| | port_range_max='6443', port_range_min='6443', protocol='tcp', standard_attr_id='4940758', |
3744| | updated_at='2024-09-06T18:58:50Z' |
3745| | created_at='2024-09-06T18:58:51Z', direction='ingress', ethertype='IPv4', id='4c4c93f6-9c6d-4d30-9023-4df2c5b4bdb9', |
3746| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4940767', |
3747| | updated_at='2024-09-06T18:58:51Z' |
3748| | created_at='2024-09-06T18:58:47Z', direction='egress', ethertype='IPv4', id='4eca7f02-ed27-41ec-bfc9-40631f5225d1', |
3749| | standard_attr_id='4940728', updated_at='2024-09-06T18:58:47Z' |
3750| | created_at='2024-09-06T18:58:48Z', direction='ingress', ethertype='IPv4', id='58efd8cd-ca22-4305-90ca-a7df0f6ef91c', |
3751| | port_range_max='53', port_range_min='53', protocol='tcp', standard_attr_id='4940737', updated_at='2024-09-06T18:58:48Z' |
3752| | created_at='2024-09-06T18:58:50Z', direction='ingress', ethertype='IPv4', id='6e4e6cec-3f27-4a40-97d5-b892ab32eeb8', |
3753| | port_range_max='2380', port_range_min='2380', protocol='tcp', standard_attr_id='4940755', |
3754| | updated_at='2024-09-06T18:58:50Z' |
3755| | created_at='2024-09-06T18:58:51Z', direction='ingress', ethertype='IPv4', id='7cdf2142-4e44-4c38-a215-12cb1b4169d5', |
3756| | port_range_max='8472', port_range_min='8472', protocol='udp', standard_attr_id='4940770', |
3757| | updated_at='2024-09-06T18:58:51Z' |
3758| | created_at='2024-09-06T18:58:50Z', direction='ingress', ethertype='IPv4', id='7efa42d8-b4b3-42d6-8631-e95a340b495f', |
3759| | port_range_max='9100', port_range_min='9100', protocol='tcp', standard_attr_id='4940761', |
3760| | updated_at='2024-09-06T18:58:50Z' |
3761| | created_at='2024-09-06T18:58:49Z', direction='ingress', ethertype='IPv4', id='96f7beb1-8468-45ea-ae49-c97091a416b1', |
3762| | port_range_max='179', port_range_min='179', protocol='tcp', standard_attr_id='4940743', |
3763| | updated_at='2024-09-06T18:58:49Z' |
3764| | created_at='2024-09-06T18:58:48Z', direction='ingress', ethertype='IPv4', id='9a36efc7-be4a-4129-8a75-1a1160d6b632', |
3765| | protocol='icmp', standard_attr_id='4940731', updated_at='2024-09-06T18:58:48Z' |
3766| | created_at='2024-09-06T18:58:48Z', direction='ingress', ethertype='IPv4', id='b4eb587d-f62e-4e36-a034-f090fc99627a', |
3767| | port_range_max='53', port_range_min='53', protocol='udp', standard_attr_id='4940740', updated_at='2024-09-06T18:58:48Z' |
3768| | created_at='2024-09-06T18:58:48Z', direction='ingress', ethertype='IPv4', id='f0ff9bdf-8221-402f-a8bb-2f27ba369fc0', |
3769| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4940734', updated_at='2024-09-06T18:58:48Z' |
3770| shared | False |
3771| stateful | True |
3772| tags | [] |
3773| updated_at | 2024-09-06T18:58:51Z |
3774+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3775wmcs-openstack security group delete b3b1382d-7a09-4a64-96bd-01354dc3d5aa
3776sg: b6b32f3f-c4b7-4fd1-9ed8-253c4e66cba3 project: ac157b0f936044539fa18bbd8cfbdef8
3777delete sg b6b32f3f-c4b7-4fd1-9ed8-253c4e66cba3 because project ac157b0f936044539fa18bbd8cfbdef8 doesn't exists
3778+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3779| Field | Value |
3780+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3781| created_at | 2024-09-19T09:40:47Z |
3782| description | Default security group |
3783| id | b6b32f3f-c4b7-4fd1-9ed8-253c4e66cba3 |
3784| name | default |
3785| project_id | ac157b0f936044539fa18bbd8cfbdef8 |
3786| revision_number | 5 |
3787| rules | belongs_to_default_sg='True', created_at='2024-09-19T09:40:47Z', direction='ingress', ethertype='IPv4', |
3788| | id='122fa4ae-95a3-46d1-a845-6296f12ee0ab', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3789| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4947142', updated_at='2024-09-19T09:40:47Z' |
3790| | belongs_to_default_sg='True', created_at='2024-09-19T09:40:47Z', direction='ingress', ethertype='IPv4', |
3791| | id='2736fa70-1c46-42a3-b834-951c1a28db86', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3792| | standard_attr_id='4947139', updated_at='2024-09-19T09:40:47Z' |
3793| | belongs_to_default_sg='True', created_at='2024-09-19T09:40:48Z', direction='ingress', ethertype='IPv4', |
3794| | id='a228cdf3-b76e-43e9-87b6-5742a25642c0', protocol='icmp', remote_group_id='b6b32f3f-c4b7-4fd1-9ed8-253c4e66cba3', |
3795| | standard_attr_id='4947151', updated_at='2024-09-19T09:40:48Z' |
3796| | belongs_to_default_sg='True', created_at='2024-09-19T09:40:48Z', direction='ingress', ethertype='IPv4', |
3797| | id='dd567abd-2d6f-420c-9dcd-844f96a6d23f', protocol='udp', remote_group_id='b6b32f3f-c4b7-4fd1-9ed8-253c4e66cba3', |
3798| | standard_attr_id='4947148', updated_at='2024-09-19T09:40:48Z' |
3799| | belongs_to_default_sg='True', created_at='2024-09-19T09:40:47Z', direction='ingress', ethertype='IPv4', |
3800| | id='f7ee4f75-3f48-4639-b32a-6344b536d9a9', port_range_max='22', port_range_min='22', protocol='tcp', |
3801| | remote_group_id='b6b32f3f-c4b7-4fd1-9ed8-253c4e66cba3', standard_attr_id='4947145', updated_at='2024-09-19T09:40:47Z' |
3802| shared | False |
3803| stateful | True |
3804| tags | [] |
3805| updated_at | 2024-09-19T09:40:48Z |
3806+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3807wmcs-openstack security group delete b6b32f3f-c4b7-4fd1-9ed8-253c4e66cba3
3808sg: b6cd04db-ba75-431d-ab6d-f5d357c692e7 project: 5fb752de88c14d8b80a6ada97d0005c4
3809delete sg b6cd04db-ba75-431d-ab6d-f5d357c692e7 because project 5fb752de88c14d8b80a6ada97d0005c4 doesn't exists
3810+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3811| Field | Value |
3812+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3813| created_at | 2024-08-24T02:31:25Z |
3814| description | Default security group |
3815| id | b6cd04db-ba75-431d-ab6d-f5d357c692e7 |
3816| name | default |
3817| project_id | 5fb752de88c14d8b80a6ada97d0005c4 |
3818| revision_number | 6 |
3819| rules | belongs_to_default_sg='True', created_at='2024-08-24T02:31:26Z', direction='ingress', ethertype='IPv4', |
3820| | id='0275f9f9-4738-4c3d-9ce1-589228bfe12b', protocol='icmp', remote_group_id='b6cd04db-ba75-431d-ab6d-f5d357c692e7', |
3821| | standard_attr_id='4934512', updated_at='2024-08-24T02:31:26Z' |
3822| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:25Z', direction='ingress', ethertype='IPv6', |
3823| | id='3140bda7-bfad-47a1-b8fc-9b1cbe960ac4', remote_group_id='b6cd04db-ba75-431d-ab6d-f5d357c692e7', |
3824| | standard_attr_id='4934494', updated_at='2024-08-24T02:31:25Z' |
3825| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:25Z', direction='ingress', ethertype='IPv4', |
3826| | id='52bbabd0-75f2-464f-ae1c-fae66df17179', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3827| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4934503', updated_at='2024-08-24T02:31:25Z' |
3828| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:26Z', direction='ingress', ethertype='IPv4', |
3829| | id='6fe52666-e3ba-4992-9fcc-01741d0900c6', protocol='udp', remote_group_id='b6cd04db-ba75-431d-ab6d-f5d357c692e7', |
3830| | standard_attr_id='4934509', updated_at='2024-08-24T02:31:26Z' |
3831| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:25Z', direction='ingress', ethertype='IPv4', id='7b1722bb- |
3832| | bc7b-4cbc-8116-ed157140f5e3', remote_group_id='b6cd04db-ba75-431d-ab6d-f5d357c692e7', standard_attr_id='4934488', |
3833| | updated_at='2024-08-24T02:31:25Z' |
3834| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:26Z', direction='ingress', ethertype='IPv4', |
3835| | id='97144291-ef14-41f9-a473-deb3209a1dd5', port_range_max='22', port_range_min='22', protocol='tcp', |
3836| | remote_group_id='b6cd04db-ba75-431d-ab6d-f5d357c692e7', standard_attr_id='4934506', updated_at='2024-08-24T02:31:26Z' |
3837| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:25Z', direction='egress', ethertype='IPv6', |
3838| | id='a66c8ab4-312b-4492-837a-167b128673ef', standard_attr_id='4934491', updated_at='2024-08-24T02:31:25Z' |
3839| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:25Z', direction='egress', ethertype='IPv4', |
3840| | id='bb0603e2-011b-4b61-8ec8-92e409879202', standard_attr_id='4934497', updated_at='2024-08-24T02:31:25Z' |
3841| | belongs_to_default_sg='True', created_at='2024-08-24T02:31:25Z', direction='ingress', ethertype='IPv4', |
3842| | id='ccec126b-1ea1-41b5-8b47-bdf45ca8f330', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3843| | standard_attr_id='4934500', updated_at='2024-08-24T02:31:25Z' |
3844| shared | False |
3845| stateful | True |
3846| tags | [] |
3847| updated_at | 2024-08-24T02:31:26Z |
3848+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3849wmcs-openstack security group delete b6cd04db-ba75-431d-ab6d-f5d357c692e7
3850sg: b6eac3f2-f558-46f0-a430-7f22dcc0f0a0 project: 694f9ea460e843edbb6c387303deb6f3
3851delete sg b6eac3f2-f558-46f0-a430-7f22dcc0f0a0 because project 694f9ea460e843edbb6c387303deb6f3 doesn't exists
3852+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3853| Field | Value |
3854+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3855| created_at | 2024-09-06T00:00:21Z |
3856| description | Default security group |
3857| id | b6eac3f2-f558-46f0-a430-7f22dcc0f0a0 |
3858| name | default |
3859| project_id | 694f9ea460e843edbb6c387303deb6f3 |
3860| revision_number | 6 |
3861| rules | belongs_to_default_sg='True', created_at='2024-09-06T00:00:21Z', direction='ingress', ethertype='IPv4', |
3862| | id='014725a4-1a5b-4603-a2fa-06e56e69613c', port_range_max='22', port_range_min='22', protocol='tcp', |
3863| | remote_group_id='b6eac3f2-f558-46f0-a430-7f22dcc0f0a0', standard_attr_id='4940104', updated_at='2024-09-06T00:00:21Z' |
3864| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:21Z', direction='ingress', ethertype='IPv4', |
3865| | id='0d8be014-8ceb-4331-a167-d993adbb03d0', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3866| | standard_attr_id='4940098', updated_at='2024-09-06T00:00:21Z' |
3867| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:21Z', direction='ingress', ethertype='IPv6', |
3868| | id='15a171ac-2eea-4b9c-9fbe-65b4d904f2e3', remote_group_id='b6eac3f2-f558-46f0-a430-7f22dcc0f0a0', |
3869| | standard_attr_id='4940092', updated_at='2024-09-06T00:00:21Z' |
3870| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:22Z', direction='ingress', ethertype='IPv4', |
3871| | id='20259e14-c5ad-4f0f-83a1-3507c9bbb647', protocol='udp', remote_group_id='b6eac3f2-f558-46f0-a430-7f22dcc0f0a0', |
3872| | standard_attr_id='4940107', updated_at='2024-09-06T00:00:22Z' |
3873| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:21Z', direction='egress', ethertype='IPv6', |
3874| | id='6c919b6d-2615-4652-8b43-6977d4db500d', standard_attr_id='4940089', updated_at='2024-09-06T00:00:21Z' |
3875| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:22Z', direction='ingress', ethertype='IPv4', |
3876| | id='88d94548-36bd-4258-bec1-854e32872978', protocol='icmp', remote_group_id='b6eac3f2-f558-46f0-a430-7f22dcc0f0a0', |
3877| | standard_attr_id='4940110', updated_at='2024-09-06T00:00:22Z' |
3878| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:21Z', direction='ingress', ethertype='IPv4', |
3879| | id='e03a47b0-7a69-4abd-ade8-5634c9a6fe30', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3880| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4940101', updated_at='2024-09-06T00:00:21Z' |
3881| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:21Z', direction='ingress', ethertype='IPv4', |
3882| | id='e16eb440-6eb7-4902-859a-2c9770a276f4', remote_group_id='b6eac3f2-f558-46f0-a430-7f22dcc0f0a0', |
3883| | standard_attr_id='4940086', updated_at='2024-09-06T00:00:21Z' |
3884| | belongs_to_default_sg='True', created_at='2024-09-06T00:00:21Z', direction='egress', ethertype='IPv4', |
3885| | id='e69bc6d8-b402-42c9-8ae9-d3f78ab15e85', standard_attr_id='4940095', updated_at='2024-09-06T00:00:21Z' |
3886| shared | False |
3887| stateful | True |
3888| tags | [] |
3889| updated_at | 2024-09-06T00:00:22Z |
3890+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3891wmcs-openstack security group delete b6eac3f2-f558-46f0-a430-7f22dcc0f0a0
3892sg: b73b0b3e-0d73-439d-84cb-839543cdd8fa project: trove
3893sg: b7512f13-1bf6-480d-9c8d-dd370397e4f0 project: labtest-proxy
3894delete sg b7512f13-1bf6-480d-9c8d-dd370397e4f0 because project labtest-proxy doesn't exists
3895+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3896| Field | Value |
3897+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3898| created_at | 2018-12-12T21:43:05Z |
3899| description | |
3900| id | b7512f13-1bf6-480d-9c8d-dd370397e4f0 |
3901| name | web-proxy |
3902| project_id | labtest-proxy |
3903| revision_number | 0 |
3904| rules | created_at='2018-12-12T21:43:41Z', direction='ingress', ethertype='IPv4', id='16c9e5dc-a2ae-4cd0-a975-b58699918659', |
3905| | normalized_cidr='0.0.0.0/0', port_range_max='80', port_range_min='80', protocol='tcp', remote_ip_prefix='0.0.0.0/0', |
3906| | standard_attr_id='404', updated_at='2018-12-12T21:43:41Z' |
3907| | created_at='2018-12-12T21:43:05Z', direction='egress', ethertype='IPv6', id='5922a8e6-b6d1-4869-8be1-f06c90d3f4ad', |
3908| | standard_attr_id='402', updated_at='2018-12-12T21:43:05Z' |
3909| | created_at='2018-12-12T21:43:05Z', direction='egress', ethertype='IPv4', id='937da271-aae6-4eda-8c23-0d3ea110a0f6', |
3910| | standard_attr_id='401', updated_at='2018-12-12T21:43:05Z' |
3911| | created_at='2018-12-12T21:43:47Z', direction='ingress', ethertype='IPv4', id='9deb7cbc-5df2-47f2-a1ff-2ee1d2f99c06', |
3912| | normalized_cidr='0.0.0.0/0', port_range_max='443', port_range_min='443', protocol='tcp', remote_ip_prefix='0.0.0.0/0', |
3913| | standard_attr_id='405', updated_at='2018-12-12T21:43:47Z' |
3914| shared | False |
3915| stateful | True |
3916| tags | [] |
3917| updated_at | 2018-12-12T21:43:05Z |
3918+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3919wmcs-openstack security group delete b7512f13-1bf6-480d-9c8d-dd370397e4f0
3920sg: b7536a8d-c203-48d9-9aa3-32d0ecb1f767 project: c570923725964b899f77f2834620aa2b
3921delete sg b7536a8d-c203-48d9-9aa3-32d0ecb1f767 because project c570923725964b899f77f2834620aa2b doesn't exists
3922+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3923| Field | Value |
3924+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3925| created_at | 2024-08-22T17:00:37Z |
3926| description | Default security group |
3927| id | b7536a8d-c203-48d9-9aa3-32d0ecb1f767 |
3928| name | default |
3929| project_id | c570923725964b899f77f2834620aa2b |
3930| revision_number | 6 |
3931| rules | belongs_to_default_sg='True', created_at='2024-08-22T17:00:38Z', direction='ingress', ethertype='IPv4', |
3932| | id='4845beb3-2c8f-49bc-867b-7fd8e5c8b2a0', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
3933| | standard_attr_id='4933645', updated_at='2024-08-22T17:00:38Z' |
3934| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:39Z', direction='ingress', ethertype='IPv4', |
3935| | id='6af55f5a-fb24-403d-9be2-3b743619bd04', protocol='udp', remote_group_id='b7536a8d-c203-48d9-9aa3-32d0ecb1f767', |
3936| | standard_attr_id='4933654', updated_at='2024-08-22T17:00:39Z' |
3937| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:37Z', direction='ingress', ethertype='IPv4', |
3938| | id='8646b38f-39e9-4784-a496-b473fe0ff436', remote_group_id='b7536a8d-c203-48d9-9aa3-32d0ecb1f767', |
3939| | standard_attr_id='4933633', updated_at='2024-08-22T17:00:37Z' |
3940| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:38Z', direction='egress', ethertype='IPv6', |
3941| | id='a389cf28-64a0-49ab-a496-aaa4313410b9', standard_attr_id='4933636', updated_at='2024-08-22T17:00:38Z' |
3942| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:38Z', direction='ingress', ethertype='IPv4', |
3943| | id='ab31e928-d436-420d-95d3-f0b523463180', port_range_max='22', port_range_min='22', protocol='tcp', |
3944| | remote_group_id='b7536a8d-c203-48d9-9aa3-32d0ecb1f767', standard_attr_id='4933651', updated_at='2024-08-22T17:00:38Z' |
3945| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:38Z', direction='egress', ethertype='IPv4', |
3946| | id='b39cc4c2-093d-4d9a-9d1d-234cd3a916dd', standard_attr_id='4933642', updated_at='2024-08-22T17:00:38Z' |
3947| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:38Z', direction='ingress', ethertype='IPv4', |
3948| | id='d7686462-2814-46d4-adcf-d45653c93ae1', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
3949| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4933648', updated_at='2024-08-22T17:00:38Z' |
3950| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:39Z', direction='ingress', ethertype='IPv4', |
3951| | id='ebfc1d3a-6dbc-4b3b-aa72-3cf90a7f5624', protocol='icmp', remote_group_id='b7536a8d-c203-48d9-9aa3-32d0ecb1f767', |
3952| | standard_attr_id='4933657', updated_at='2024-08-22T17:00:39Z' |
3953| | belongs_to_default_sg='True', created_at='2024-08-22T17:00:38Z', direction='ingress', ethertype='IPv6', |
3954| | id='f4f6d578-3024-4020-90ae-53bdfb895ed7', remote_group_id='b7536a8d-c203-48d9-9aa3-32d0ecb1f767', |
3955| | standard_attr_id='4933639', updated_at='2024-08-22T17:00:38Z' |
3956| shared | False |
3957| stateful | True |
3958| tags | [] |
3959| updated_at | 2024-08-22T17:00:39Z |
3960+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3961wmcs-openstack security group delete b7536a8d-c203-48d9-9aa3-32d0ecb1f767
3962sg: b8aa6e33-d1c8-43c0-901c-1e5b338fc84f project: devproject10
3963delete sg b8aa6e33-d1c8-43c0-901c-1e5b338fc84f because project devproject10 doesn't exists
3964+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3965| Field | Value |
3966+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3967| created_at | 2019-05-20T16:49:05Z |
3968| description | Default security group |
3969| id | b8aa6e33-d1c8-43c0-901c-1e5b338fc84f |
3970| name | default |
3971| project_id | devproject10 |
3972| revision_number | 0 |
3973| rules | belongs_to_default_sg='True', created_at='2019-05-20T16:49:05Z', direction='ingress', ethertype='IPv4', |
3974| | id='3a164657-6d7b-4027-a002-977450e844a6', remote_group_id='b8aa6e33-d1c8-43c0-901c-1e5b338fc84f', |
3975| | standard_attr_id='426', updated_at='2019-05-20T16:49:05Z' |
3976| | belongs_to_default_sg='True', created_at='2019-05-20T16:49:05Z', direction='ingress', ethertype='IPv6', |
3977| | id='6ae5ff00-e25c-425a-b473-6d89e60c5fc6', remote_group_id='b8aa6e33-d1c8-43c0-901c-1e5b338fc84f', |
3978| | standard_attr_id='428', updated_at='2019-05-20T16:49:05Z' |
3979| | belongs_to_default_sg='True', created_at='2019-05-20T16:49:05Z', direction='egress', ethertype='IPv6', |
3980| | id='8afd0d53-9667-4eb7-ba9c-49ecc0141f15', standard_attr_id='429', updated_at='2019-05-20T16:49:05Z' |
3981| | belongs_to_default_sg='True', created_at='2019-05-20T16:49:05Z', direction='egress', ethertype='IPv4', |
3982| | id='fe46c58d-964e-4a36-a2fd-bb1ec90e17d3', standard_attr_id='427', updated_at='2019-05-20T16:49:05Z' |
3983| shared | False |
3984| stateful | True |
3985| tags | [] |
3986| updated_at | 2019-05-20T16:49:05Z |
3987+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3988wmcs-openstack security group delete b8aa6e33-d1c8-43c0-901c-1e5b338fc84f
3989sg: badd3471-68d4-46ef-883a-37bc4b9609bc project: bastioninfra-codfw1dev
3990sg: bced2415-ddd4-4e39-840a-1ebf195af42f project: ldaptest3
3991delete sg bced2415-ddd4-4e39-840a-1ebf195af42f because project ldaptest3 doesn't exists
3992+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3993| Field | Value |
3994+-----------------+-------------------------------------------------------------------------------------------------------------------------+
3995| created_at | 2020-06-29T21:19:42Z |
3996| description | Default security group |
3997| id | bced2415-ddd4-4e39-840a-1ebf195af42f |
3998| name | default |
3999| project_id | ldaptest3 |
4000| revision_number | 6 |
4001| rules | belongs_to_default_sg='True', created_at='2020-06-29T21:19:42Z', direction='egress', ethertype='IPv6', |
4002| | id='12fb7f56-fc4f-4e24-bd19-764ffb9685b6', standard_attr_id='1752', updated_at='2020-06-29T21:19:42Z' |
4003| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:42Z', direction='ingress', ethertype='IPv4', |
4004| | id='35ed9d72-16d0-453a-b812-95da7f95770c', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4005| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1758', updated_at='2020-06-29T21:19:42Z' |
4006| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:42Z', direction='egress', ethertype='IPv4', |
4007| | id='42b6b315-50d8-40f3-933c-3508b07d4b73', standard_attr_id='1746', updated_at='2020-06-29T21:19:42Z' |
4008| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:43Z', direction='ingress', ethertype='IPv4', id='45e01bcc- |
4009| | bc2f-40fd-b528-de8fc257ae72', port_range_max='65535', port_range_min='1', protocol='udp', |
4010| | remote_group_id='bced2415-ddd4-4e39-840a-1ebf195af42f', standard_attr_id='1764', updated_at='2020-06-29T21:19:43Z' |
4011| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:42Z', direction='ingress', ethertype='IPv6', |
4012| | id='6444bfb5-28ac-4cd9-82f0-6b75d6006a1c', remote_group_id='bced2415-ddd4-4e39-840a-1ebf195af42f', |
4013| | standard_attr_id='1749', updated_at='2020-06-29T21:19:42Z' |
4014| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:42Z', direction='ingress', ethertype='IPv4', |
4015| | id='72f24c8a-94c6-473b-a404-6bd830cee0c7', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4016| | standard_attr_id='1755', updated_at='2020-06-29T21:19:42Z' |
4017| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:43Z', direction='ingress', ethertype='IPv4', |
4018| | id='764ffb05-62ab-4f43-8492-453fedc67db0', protocol='icmp', remote_group_id='bced2415-ddd4-4e39-840a-1ebf195af42f', |
4019| | standard_attr_id='1767', updated_at='2020-06-29T21:19:43Z' |
4020| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:42Z', direction='ingress', ethertype='IPv4', |
4021| | id='893265b4-0fac-4928-ad1d-1aba15aed7c4', remote_group_id='bced2415-ddd4-4e39-840a-1ebf195af42f', |
4022| | standard_attr_id='1743', updated_at='2020-06-29T21:19:42Z' |
4023| | belongs_to_default_sg='True', created_at='2020-06-29T21:19:43Z', direction='ingress', ethertype='IPv4', |
4024| | id='ec00b55d-c56d-4e8b-8b17-2e8aabcfe7d2', port_range_max='22', port_range_min='22', protocol='tcp', |
4025| | remote_group_id='bced2415-ddd4-4e39-840a-1ebf195af42f', standard_attr_id='1761', updated_at='2020-06-29T21:19:43Z' |
4026| shared | False |
4027| stateful | True |
4028| tags | [] |
4029| updated_at | 2020-06-29T21:19:43Z |
4030+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4031wmcs-openstack security group delete bced2415-ddd4-4e39-840a-1ebf195af42f
4032sg: bdc1b3e6-f5d6-4141-82bc-6833bff37063 project: 7c1db41f28de47ce9fe98d0f5dc872ba
4033delete sg bdc1b3e6-f5d6-4141-82bc-6833bff37063 because project 7c1db41f28de47ce9fe98d0f5dc872ba doesn't exists
4034+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4035| Field | Value |
4036+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4037| created_at | 2024-09-25T09:51:47Z |
4038| description | Default security group |
4039| id | bdc1b3e6-f5d6-4141-82bc-6833bff37063 |
4040| name | default |
4041| project_id | 7c1db41f28de47ce9fe98d0f5dc872ba |
4042| revision_number | 7 |
4043| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
4044| | id='09d1930b-5898-484e-b9c8-e0167fbde1ea', protocol='icmp', remote_group_id='bdc1b3e6-f5d6-4141-82bc-6833bff37063', |
4045| | standard_attr_id='4950880', updated_at='2024-09-25T09:51:49Z' |
4046| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
4047| | id='5ec980f7-eaed-4964-8a7c-a202feb5c529', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
4048| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950811', updated_at='2024-09-25T09:51:48Z' |
4049| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
4050| | id='7387899e-33dc-492e-9292-fa95afb4819f', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4051| | standard_attr_id='4950775', updated_at='2024-09-25T09:51:47Z' |
4052| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
4053| | id='b04dec34-d051-4a95-8fee-784c28a71672', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950691', |
4054| | updated_at='2024-09-25T09:51:47Z' |
4055| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
4056| | id='b4579e18-46a1-4a7a-b412-3cdcc3fc0b4a', remote_group_id='bdc1b3e6-f5d6-4141-82bc-6833bff37063', |
4057| | standard_attr_id='4950682', updated_at='2024-09-25T09:51:47Z' |
4058| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
4059| | id='be9ebf11-26e2-4446-bfa2-886c1242a7a4', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
4060| | standard_attr_id='4950703', updated_at='2024-09-25T09:51:47Z' |
4061| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
4062| | id='c47ee8ff-e6e1-4aa5-9def-dc0045f21366', port_range_max='22', port_range_min='22', protocol='tcp', |
4063| | remote_group_id='bdc1b3e6-f5d6-4141-82bc-6833bff37063', standard_attr_id='4950832', updated_at='2024-09-25T09:51:48Z' |
4064| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
4065| | id='c6d60678-7f9d-4210-8037-7015ea038cd6', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4066| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950793', updated_at='2024-09-25T09:51:48Z' |
4067| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
4068| | id='cd3ffba8-ce07-48d1-a271-487ad3f997fe', remote_group_id='bdc1b3e6-f5d6-4141-82bc-6833bff37063', |
4069| | standard_attr_id='4950673', updated_at='2024-09-25T09:51:47Z' |
4070| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
4071| | id='fa5f926e-1a10-46af-864c-86e885fb0d73', protocol='udp', remote_group_id='bdc1b3e6-f5d6-4141-82bc-6833bff37063', |
4072| | standard_attr_id='4950856', updated_at='2024-09-25T09:51:49Z' |
4073| shared | False |
4074| stateful | True |
4075| tags | [] |
4076| updated_at | 2024-09-25T09:51:49Z |
4077+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4078wmcs-openstack security group delete bdc1b3e6-f5d6-4141-82bc-6833bff37063
4079sg: bfd91f21-f33f-414f-af55-03a00f0c6ce3 project: admin
4080sg: c02b1e3c-32db-4347-91af-09ce2b061232 project: b84e988138f64e99a5a60fa868aeaca8
4081delete sg c02b1e3c-32db-4347-91af-09ce2b061232 because project b84e988138f64e99a5a60fa868aeaca8 doesn't exists
4082+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4083| Field | Value |
4084+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4085| created_at | 2024-08-30T16:10:38Z |
4086| description | Default security group |
4087| id | c02b1e3c-32db-4347-91af-09ce2b061232 |
4088| name | default |
4089| project_id | b84e988138f64e99a5a60fa868aeaca8 |
4090| revision_number | 6 |
4091| rules | belongs_to_default_sg='True', created_at='2024-08-30T16:10:38Z', direction='ingress', ethertype='IPv4', |
4092| | id='3b2100a7-44d2-40af-b037-a74ffb62a2d6', remote_group_id='c02b1e3c-32db-4347-91af-09ce2b061232', |
4093| | standard_attr_id='4937386', updated_at='2024-08-30T16:10:38Z' |
4094| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:38Z', direction='ingress', ethertype='IPv6', |
4095| | id='60e313e6-fac9-43fa-918b-4dfb79a2d0bd', remote_group_id='c02b1e3c-32db-4347-91af-09ce2b061232', |
4096| | standard_attr_id='4937392', updated_at='2024-08-30T16:10:38Z' |
4097| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:38Z', direction='egress', ethertype='IPv6', |
4098| | id='7709592b-4341-4bc3-a53e-aec3ef5181c4', standard_attr_id='4937389', updated_at='2024-08-30T16:10:38Z' |
4099| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:39Z', direction='ingress', ethertype='IPv4', |
4100| | id='7771b2d8-8106-43cd-b142-a3105dfa0e64', protocol='udp', remote_group_id='c02b1e3c-32db-4347-91af-09ce2b061232', |
4101| | standard_attr_id='4937407', updated_at='2024-08-30T16:10:39Z' |
4102| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:38Z', direction='egress', ethertype='IPv4', |
4103| | id='872db05d-1b47-4bba-970d-0eef15a9473e', standard_attr_id='4937395', updated_at='2024-08-30T16:10:38Z' |
4104| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:38Z', direction='ingress', ethertype='IPv4', |
4105| | id='b6486466-a9c6-474d-ae5c-5338d5ae0ef7', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4106| | standard_attr_id='4937398', updated_at='2024-08-30T16:10:38Z' |
4107| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:38Z', direction='ingress', ethertype='IPv4', |
4108| | id='ea6e6ad3-116f-4f86-bf34-05b8eb3ef195', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4109| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4937401', updated_at='2024-08-30T16:10:38Z' |
4110| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:39Z', direction='ingress', ethertype='IPv4', |
4111| | id='ee6a4a56-dc2f-4eb2-a366-007d355959ca', port_range_max='22', port_range_min='22', protocol='tcp', |
4112| | remote_group_id='c02b1e3c-32db-4347-91af-09ce2b061232', standard_attr_id='4937404', updated_at='2024-08-30T16:10:39Z' |
4113| | belongs_to_default_sg='True', created_at='2024-08-30T16:10:39Z', direction='ingress', ethertype='IPv4', |
4114| | id='f570242d-0f6e-4583-a4f7-1c12c04a9d6d', protocol='icmp', remote_group_id='c02b1e3c-32db-4347-91af-09ce2b061232', |
4115| | standard_attr_id='4937410', updated_at='2024-08-30T16:10:39Z' |
4116| shared | False |
4117| stateful | True |
4118| tags | [] |
4119| updated_at | 2024-08-30T16:10:39Z |
4120+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4121wmcs-openstack security group delete c02b1e3c-32db-4347-91af-09ce2b061232
4122sg: c2798098-a112-4997-9349-1f25128d7081 project: ussuriprojecttest12
4123delete sg c2798098-a112-4997-9349-1f25128d7081 because project ussuriprojecttest12 doesn't exists
4124+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4125| Field | Value |
4126+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4127| created_at | 2021-04-07T12:25:11Z |
4128| description | Default security group |
4129| id | c2798098-a112-4997-9349-1f25128d7081 |
4130| name | default |
4131| project_id | ussuriprojecttest12 |
4132| revision_number | 6 |
4133| rules | belongs_to_default_sg='True', created_at='2021-04-07T12:25:11Z', direction='ingress', ethertype='IPv6', |
4134| | id='3a97a9cd-9143-4876-a8cb-b7fce52464fa', remote_group_id='c2798098-a112-4997-9349-1f25128d7081', |
4135| | standard_attr_id='3909', updated_at='2021-04-07T12:25:11Z' |
4136| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:12Z', direction='ingress', ethertype='IPv4', |
4137| | id='4949a573-c593-4b43-bf33-d9f2f6eff385', protocol='udp', remote_group_id='c2798098-a112-4997-9349-1f25128d7081', |
4138| | standard_attr_id='3924', updated_at='2021-04-07T12:25:12Z' |
4139| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:12Z', direction='ingress', ethertype='IPv4', |
4140| | id='7dd7ac4c-f19d-4416-8878-02249ebbd09f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4141| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3918', updated_at='2021-04-07T12:25:12Z' |
4142| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:12Z', direction='ingress', ethertype='IPv4', |
4143| | id='828e9a29-3065-4f46-b87e-2cdf9f51decf', protocol='icmp', remote_group_id='c2798098-a112-4997-9349-1f25128d7081', |
4144| | standard_attr_id='3927', updated_at='2021-04-07T12:25:12Z' |
4145| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:11Z', direction='egress', ethertype='IPv6', |
4146| | id='8a1cb37b-b5d3-42cf-ac5c-83584af7d31c', standard_attr_id='3912', updated_at='2021-04-07T12:25:11Z' |
4147| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:11Z', direction='ingress', ethertype='IPv4', |
4148| | id='9773da37-9521-4cfe-a221-ff9c380a0487', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4149| | standard_attr_id='3915', updated_at='2021-04-07T12:25:11Z' |
4150| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:11Z', direction='egress', ethertype='IPv4', |
4151| | id='c9bd8613-f9dd-4ed5-ad92-a910e7c25f53', standard_attr_id='3906', updated_at='2021-04-07T12:25:11Z' |
4152| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:12Z', direction='ingress', ethertype='IPv4', |
4153| | id='cea83041-cbcc-492d-a3cb-4080d4b66faa', port_range_max='22', port_range_min='22', protocol='tcp', |
4154| | remote_group_id='c2798098-a112-4997-9349-1f25128d7081', standard_attr_id='3921', updated_at='2021-04-07T12:25:12Z' |
4155| | belongs_to_default_sg='True', created_at='2021-04-07T12:25:11Z', direction='ingress', ethertype='IPv4', |
4156| | id='eaf387b4-4b9c-4a2e-86b8-c3fe5c0d7dea', remote_group_id='c2798098-a112-4997-9349-1f25128d7081', |
4157| | standard_attr_id='3903', updated_at='2021-04-07T12:25:11Z' |
4158| shared | False |
4159| stateful | True |
4160| tags | [] |
4161| updated_at | 2021-04-07T12:25:12Z |
4162+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4163wmcs-openstack security group delete c2798098-a112-4997-9349-1f25128d7081
4164sg: c2e2f39f-9966-4785-a52c-bb4236fcde88 project: taavi-test-project
4165delete sg c2e2f39f-9966-4785-a52c-bb4236fcde88 because project taavi-test-project doesn't exists
4166+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4167| Field | Value |
4168+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4169| created_at | 2022-12-27T13:26:41Z |
4170| description | My neutron security group |
4171| id | c2e2f39f-9966-4785-a52c-bb4236fcde88 |
4172| name | web |
4173| project_id | taavi-test-project |
4174| revision_number | 1 |
4175| rules | created_at='2022-12-27T13:26:41Z', direction='egress', ethertype='IPv4', id='cf1739ee-606f-4a28-8556-84cfe81d8679', |
4176| | standard_attr_id='4719226', updated_at='2022-12-27T13:26:41Z' |
4177| | created_at='2022-12-27T13:26:41Z', direction='egress', ethertype='IPv6', id='f6a62e9e-c310-47e1-8b7d-b9ea35db08c3', |
4178| | standard_attr_id='4719229', updated_at='2022-12-27T13:26:41Z' |
4179| shared | False |
4180| stateful | True |
4181| tags | [] |
4182| updated_at | 2022-12-27T13:26:41Z |
4183+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4184wmcs-openstack security group delete c2e2f39f-9966-4785-a52c-bb4236fcde88
4185sg: c2f0d0f9-8c60-4cce-a108-c77683d591c0 project: ocata-test-108
4186delete sg c2f0d0f9-8c60-4cce-a108-c77683d591c0 because project ocata-test-108 doesn't exists
4187+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4188| Field | Value |
4189+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4190| created_at | 2019-12-03T08:03:55Z |
4191| description | Default security group |
4192| id | c2f0d0f9-8c60-4cce-a108-c77683d591c0 |
4193| name | default |
4194| project_id | ocata-test-108 |
4195| revision_number | 6 |
4196| rules | belongs_to_default_sg='True', created_at='2019-12-03T08:03:55Z', direction='egress', ethertype='IPv4', |
4197| | id='08464fb3-d704-4908-a7e9-dec0e557d916', revision_number='1', standard_attr_id='816', |
4198| | updated_at='2019-12-03T08:03:55Z' |
4199| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:57Z', direction='ingress', ethertype='IPv4', |
4200| | id='2e467699-77a4-4e2a-8335-031d09fc67de', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
4201| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', revision_number='1', standard_attr_id='820', |
4202| | updated_at='2019-12-03T08:03:57Z' |
4203| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:56Z', direction='ingress', ethertype='IPv4', |
4204| | id='33fc2767-3119-49bc-a1ed-0ef1a806ed42', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4205| | revision_number='1', standard_attr_id='819', updated_at='2019-12-03T08:03:56Z' |
4206| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:55Z', direction='ingress', ethertype='IPv6', |
4207| | id='408487e9-ab4b-4933-b5a7-012fc8ec4172', remote_group_id='c2f0d0f9-8c60-4cce-a108-c77683d591c0', revision_number='1', |
4208| | standard_attr_id='817', updated_at='2019-12-03T08:03:55Z' |
4209| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:57Z', direction='ingress', ethertype='IPv4', |
4210| | id='4ffb401b-c334-41d8-80b7-5e896a4e39fa', port_range_max='22', port_range_min='22', protocol='tcp', |
4211| | remote_group_id='c2f0d0f9-8c60-4cce-a108-c77683d591c0', revision_number='1', standard_attr_id='821', |
4212| | updated_at='2019-12-03T08:03:57Z' |
4213| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:55Z', direction='ingress', ethertype='IPv4', |
4214| | id='af98b9ca-8ba5-424d-a822-6d4ff2929433', remote_group_id='c2f0d0f9-8c60-4cce-a108-c77683d591c0', revision_number='1', |
4215| | standard_attr_id='815', updated_at='2019-12-03T08:03:55Z' |
4216| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:58Z', direction='ingress', ethertype='IPv4', |
4217| | id='ce2ca226-415c-4d6a-a744-9832b04c1e6c', protocol='icmp', remote_group_id='c2f0d0f9-8c60-4cce-a108-c77683d591c0', |
4218| | revision_number='1', standard_attr_id='823', updated_at='2019-12-03T08:03:58Z' |
4219| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:55Z', direction='egress', ethertype='IPv6', |
4220| | id='e52eff20-6c38-47a9-b931-1c1de58c0b35', revision_number='1', standard_attr_id='818', |
4221| | updated_at='2019-12-03T08:03:55Z' |
4222| | belongs_to_default_sg='True', created_at='2019-12-03T08:03:58Z', direction='ingress', ethertype='IPv4', |
4223| | id='eff2c0ff-24ba-49b1-814e-8a4cbfdcdad5', port_range_max='65535', port_range_min='1', protocol='udp', |
4224| | remote_group_id='c2f0d0f9-8c60-4cce-a108-c77683d591c0', revision_number='1', standard_attr_id='822', |
4225| | updated_at='2019-12-03T08:03:58Z' |
4226| shared | False |
4227| stateful | True |
4228| tags | [] |
4229| updated_at | 2019-12-03T08:03:58Z |
4230+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4231wmcs-openstack security group delete c2f0d0f9-8c60-4cce-a108-c77683d591c0
4232sg: c58aa988-22f2-40d9-8ceb-3f5ce8d553e7 project: k8s-dev
4233delete sg c58aa988-22f2-40d9-8ceb-3f5ce8d553e7 because project k8s-dev doesn't exists
4234+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4235| Field | Value |
4236+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4237| created_at | 2024-05-14T19:52:58Z |
4238| description | |
4239| id | c58aa988-22f2-40d9-8ceb-3f5ce8d553e7 |
4240| name | superset-dev-126-1-aloc7ycplvok-secgroup_kube_master-k6p5kjqrhfpb |
4241| project_id | k8s-dev |
4242| revision_number | 15 |
4243| rules | created_at='2024-05-14T19:52:59Z', direction='ingress', ethertype='IPv4', id='2bcbd15c-a4ba-4241-a810-715d3018a1d4', |
4244| | port_range_max='179', port_range_min='179', protocol='tcp', standard_attr_id='4901174', |
4245| | updated_at='2024-05-14T19:52:59Z' |
4246| | created_at='2024-05-14T19:52:58Z', direction='ingress', ethertype='IPv4', id='2f14b535-2cac-4ee7-9338-ab6cffd9072f', |
4247| | protocol='icmp', standard_attr_id='4901162', updated_at='2024-05-14T19:52:58Z' |
4248| | created_at='2024-05-14T19:52:59Z', direction='ingress', ethertype='IPv4', id='32f74b45-ad2f-4ec4-9931-e01227016580', |
4249| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4901165', updated_at='2024-05-14T19:52:59Z' |
4250| | created_at='2024-05-14T19:52:59Z', direction='ingress', ethertype='IPv4', id='3cfd36f6-99ae-47d6-9342-bee242851487', |
4251| | port_range_max='53', port_range_min='53', protocol='tcp', standard_attr_id='4901168', updated_at='2024-05-14T19:52:59Z' |
4252| | created_at='2024-05-14T19:52:59Z', direction='ingress', ethertype='IPv4', id='44ab1200-ab19-4b3c-b43c-6ec48c50a750', |
4253| | port_range_max='53', port_range_min='53', protocol='udp', standard_attr_id='4901171', updated_at='2024-05-14T19:52:59Z' |
4254| | created_at='2024-05-14T19:53:00Z', direction='ingress', ethertype='IPv4', id='5580a51e-f636-4df7-b5e5-d399c5557574', |
4255| | port_range_max='9100', port_range_min='9100', protocol='tcp', standard_attr_id='4901192', |
4256| | updated_at='2024-05-14T19:53:00Z' |
4257| | created_at='2024-05-14T19:53:00Z', direction='ingress', ethertype='IPv4', id='6dab2394-9115-40dd-be59-6e0f414beec1', |
4258| | port_range_max='10250', port_range_min='10250', protocol='tcp', standard_attr_id='4901195', |
4259| | updated_at='2024-05-14T19:53:00Z' |
4260| | created_at='2024-05-14T19:53:00Z', direction='ingress', ethertype='IPv4', id='adbab611-f2dc-4e41-9589-37b9b0bf13c9', |
4261| | port_range_max='6443', port_range_min='6443', protocol='tcp', standard_attr_id='4901189', |
4262| | updated_at='2024-05-14T19:53:00Z' |
4263| | created_at='2024-05-14T19:52:58Z', direction='egress', ethertype='IPv4', id='aea14984-d411-4337-bc22-26459d4f67ff', |
4264| | standard_attr_id='4901159', updated_at='2024-05-14T19:52:58Z' |
4265| | created_at='2024-05-14T19:53:01Z', direction='ingress', ethertype='IPv4', id='c5cdf905-3e55-43f2-a005-b025e3863abf', |
4266| | port_range_max='8472', port_range_min='8472', protocol='udp', standard_attr_id='4901201', |
4267| | updated_at='2024-05-14T19:53:01Z' |
4268| | created_at='2024-05-14T19:53:00Z', direction='ingress', ethertype='IPv4', id='d4da0852-6d63-4303-809e-a567e1180bea', |
4269| | port_range_max='2379', port_range_min='2379', protocol='tcp', standard_attr_id='4901183', |
4270| | updated_at='2024-05-14T19:53:00Z' |
4271| | created_at='2024-05-14T19:53:00Z', direction='ingress', ethertype='IPv4', id='d69bff60-b650-4e13-bde6-63df7152d69b', |
4272| | port_range_max='2380', port_range_min='2380', protocol='tcp', standard_attr_id='4901186', |
4273| | updated_at='2024-05-14T19:53:00Z' |
4274| | created_at='2024-05-14T19:52:59Z', direction='ingress', ethertype='IPv4', id='dddee429-e1aa-45ba-a7bb-cc3790763618', |
4275| | port_range_max='7080', port_range_min='7080', protocol='tcp', standard_attr_id='4901177', |
4276| | updated_at='2024-05-14T19:52:59Z' |
4277| | created_at='2024-05-14T19:53:01Z', direction='ingress', ethertype='IPv4', id='e6869e1b-325f-4b42-96e1-6d7a9ed34f31', |
4278| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4901198', |
4279| | updated_at='2024-05-14T19:53:01Z' |
4280| | created_at='2024-05-14T19:52:58Z', direction='egress', ethertype='IPv6', id='f56d4bc2-773d-4b4c-9ec0-c0852579d310', |
4281| | standard_attr_id='4901156', updated_at='2024-05-14T19:52:58Z' |
4282| | created_at='2024-05-14T19:52:59Z', direction='ingress', ethertype='IPv4', id='fbe39214-5514-4206-a988-b9b3c1a2e249', |
4283| | port_range_max='8080', port_range_min='8080', protocol='tcp', standard_attr_id='4901180', |
4284| | updated_at='2024-05-14T19:52:59Z' |
4285| shared | False |
4286| stateful | True |
4287| tags | [] |
4288| updated_at | 2024-05-14T19:53:01Z |
4289+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4290wmcs-openstack security group delete c58aa988-22f2-40d9-8ceb-3f5ce8d553e7
4291sg: c5fa401b-d4f7-4fec-b755-fdc84fa8860f project: taavitestproject
4292delete sg c5fa401b-d4f7-4fec-b755-fdc84fa8860f because project taavitestproject doesn't exists
4293+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4294| Field | Value |
4295+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4296| created_at | 2024-09-19T09:33:29Z |
4297| description | Default security group |
4298| id | c5fa401b-d4f7-4fec-b755-fdc84fa8860f |
4299| name | default |
4300| project_id | taavitestproject |
4301| revision_number | 1 |
4302| rules | belongs_to_default_sg='True', created_at='2024-09-19T09:33:29Z', direction='ingress', ethertype='IPv4', |
4303| | id='01beade4-1354-4b3c-989c-b87c538c2f13', remote_group_id='c5fa401b-d4f7-4fec-b755-fdc84fa8860f', |
4304| | standard_attr_id='4947121', updated_at='2024-09-19T09:33:29Z' |
4305| | belongs_to_default_sg='True', created_at='2024-09-19T09:33:29Z', direction='ingress', ethertype='IPv6', |
4306| | id='01ebae8a-888a-4bae-934e-2e8fb5231f04', remote_group_id='c5fa401b-d4f7-4fec-b755-fdc84fa8860f', |
4307| | standard_attr_id='4947127', updated_at='2024-09-19T09:33:29Z' |
4308| | belongs_to_default_sg='True', created_at='2024-09-19T09:33:29Z', direction='egress', ethertype='IPv4', |
4309| | id='42071e33-d8cd-4a40-a30f-2d0bff28fe9a', standard_attr_id='4947130', updated_at='2024-09-19T09:33:29Z' |
4310| | belongs_to_default_sg='True', created_at='2024-09-19T09:33:29Z', direction='egress', ethertype='IPv6', id='e0dabdeb- |
4311| | fd2e-4a98-a372-c8c6582c14ba', standard_attr_id='4947124', updated_at='2024-09-19T09:33:29Z' |
4312| shared | False |
4313| stateful | True |
4314| tags | [] |
4315| updated_at | 2024-09-19T09:33:29Z |
4316+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4317wmcs-openstack security group delete c5fa401b-d4f7-4fec-b755-fdc84fa8860f
4318sg: c5fdf395-7759-4124-bce1-c6614605b9c8 project: cloudinfra-codfw1dev
4319sg: c8f47512-8494-4683-84bc-519e99f5ee35 project: 546476e2a99c44db8c614696546365ce
4320delete sg c8f47512-8494-4683-84bc-519e99f5ee35 because project 546476e2a99c44db8c614696546365ce doesn't exists
4321+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4322| Field | Value |
4323+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4324| created_at | 2024-09-25T09:51:47Z |
4325| description | Default security group |
4326| id | c8f47512-8494-4683-84bc-519e99f5ee35 |
4327| name | default |
4328| project_id | 546476e2a99c44db8c614696546365ce |
4329| revision_number | 7 |
4330| rules | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
4331| | id='15a25bdb-3af5-4ad2-88cd-8453711f86d7', normalized_cidr='172.16.129.0/24', port_range_max='22', port_range_min='22', |
4332| | protocol='tcp', remote_ip_prefix='172.16.129.0/24', standard_attr_id='4950838', updated_at='2024-09-25T09:51:48Z' |
4333| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
4334| | id='274858b8-2280-4992-af86-c160b0ecde35', port_range_max='22', port_range_min='22', protocol='tcp', |
4335| | remote_group_id='c8f47512-8494-4683-84bc-519e99f5ee35', standard_attr_id='4950853', updated_at='2024-09-25T09:51:49Z' |
4336| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
4337| | id='4d5cb9a9-283f-46bc-b5c6-14274b45b078', protocol='udp', remote_group_id='c8f47512-8494-4683-84bc-519e99f5ee35', |
4338| | standard_attr_id='4950877', updated_at='2024-09-25T09:51:49Z' |
4339| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
4340| | id='5e53210f-e2e5-4b1c-ae78-7e53d3e5e5ed', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4341| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4950814', updated_at='2024-09-25T09:51:48Z' |
4342| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv4', |
4343| | id='6caa3d0b-425b-4ed9-8ff6-eda34bbeba5d', remote_group_id='c8f47512-8494-4683-84bc-519e99f5ee35', |
4344| | standard_attr_id='4950742', updated_at='2024-09-25T09:51:47Z' |
4345| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='ingress', ethertype='IPv6', |
4346| | id='78033cb1-a1c4-4bcd-944a-b9ee45f6bda9', remote_group_id='c8f47512-8494-4683-84bc-519e99f5ee35', |
4347| | standard_attr_id='4950739', updated_at='2024-09-25T09:51:47Z' |
4348| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:48Z', direction='ingress', ethertype='IPv4', |
4349| | id='909309cb-1975-4876-8197-8e6f2c7367ae', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4350| | standard_attr_id='4950784', updated_at='2024-09-25T09:51:48Z' |
4351| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv6', |
4352| | id='a2d22f1a-6b94-4ce7-9158-d5f114c7074d', normalized_cidr='::/0', remote_ip_prefix='::/0', standard_attr_id='4950745', |
4353| | updated_at='2024-09-25T09:51:47Z' |
4354| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:49Z', direction='ingress', ethertype='IPv4', |
4355| | id='ab2ba45e-44b0-4787-8601-abf1251dc3bb', protocol='icmp', remote_group_id='c8f47512-8494-4683-84bc-519e99f5ee35', |
4356| | standard_attr_id='4950898', updated_at='2024-09-25T09:51:49Z' |
4357| | belongs_to_default_sg='True', created_at='2024-09-25T09:51:47Z', direction='egress', ethertype='IPv4', |
4358| | id='d35c3339-ab30-4a53-b9ad-8bf36f602f2c', normalized_cidr='0.0.0.0/0', remote_ip_prefix='0.0.0.0/0', |
4359| | standard_attr_id='4950748', updated_at='2024-09-25T09:51:47Z' |
4360| shared | False |
4361| stateful | True |
4362| tags | [] |
4363| updated_at | 2024-09-25T09:51:49Z |
4364+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4365wmcs-openstack security group delete c8f47512-8494-4683-84bc-519e99f5ee35
4366sg: cb192346-e968-40cc-a940-20071edd0083 project: devproject29
4367delete sg cb192346-e968-40cc-a940-20071edd0083 because project devproject29 doesn't exists
4368+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4369| Field | Value |
4370+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4371| created_at | 2019-05-20T17:29:19Z |
4372| description | Default security group |
4373| id | cb192346-e968-40cc-a940-20071edd0083 |
4374| name | default |
4375| project_id | devproject29 |
4376| revision_number | 0 |
4377| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:29:19Z', direction='ingress', ethertype='IPv4', |
4378| | id='2fc50f5b-37bd-4fbd-8fa2-684bfeff5bd9', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4379| | standard_attr_id='509', updated_at='2019-05-20T17:29:19Z' |
4380| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:19Z', direction='egress', ethertype='IPv6', |
4381| | id='307f4786-8c78-4782-96ca-1f51475a1624', standard_attr_id='508', updated_at='2019-05-20T17:29:19Z' |
4382| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:20Z', direction='ingress', ethertype='IPv4', |
4383| | id='3988d193-61db-4c28-8335-2104c4165cae', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
4384| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='510', updated_at='2019-05-20T17:29:20Z' |
4385| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:19Z', direction='ingress', ethertype='IPv4', |
4386| | id='4802f0a7-a684-4cc5-bc34-fcc701f6aafc', remote_group_id='cb192346-e968-40cc-a940-20071edd0083', |
4387| | standard_attr_id='505', updated_at='2019-05-20T17:29:19Z' |
4388| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:20Z', direction='ingress', ethertype='IPv4', |
4389| | id='64bcf072-c01c-4195-ab4e-4de9a455f49d', port_range_max='65535', port_range_min='1', protocol='udp', |
4390| | remote_group_id='cb192346-e968-40cc-a940-20071edd0083', standard_attr_id='512', updated_at='2019-05-20T17:29:20Z' |
4391| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:19Z', direction='ingress', ethertype='IPv6', |
4392| | id='bfc0015b-d07f-469b-98cc-bef779deb430', remote_group_id='cb192346-e968-40cc-a940-20071edd0083', |
4393| | standard_attr_id='507', updated_at='2019-05-20T17:29:19Z' |
4394| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:21Z', direction='ingress', ethertype='IPv4', |
4395| | id='cef2c22b-d87f-4a65-88a4-b6a02b0a62d1', protocol='icmp', remote_group_id='cb192346-e968-40cc-a940-20071edd0083', |
4396| | standard_attr_id='513', updated_at='2019-05-20T17:29:21Z' |
4397| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:19Z', direction='egress', ethertype='IPv4', |
4398| | id='db76fd23-7161-46a7-bdf9-72ab0234fc6c', standard_attr_id='506', updated_at='2019-05-20T17:29:19Z' |
4399| | belongs_to_default_sg='True', created_at='2019-05-20T17:29:20Z', direction='ingress', ethertype='IPv4', |
4400| | id='dceff750-718a-4f0c-af9e-f24555c99851', port_range_max='22', port_range_min='22', protocol='tcp', |
4401| | remote_group_id='cb192346-e968-40cc-a940-20071edd0083', standard_attr_id='511', updated_at='2019-05-20T17:29:20Z' |
4402| shared | False |
4403| stateful | True |
4404| tags | [] |
4405| updated_at | 2019-05-20T17:29:19Z |
4406+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4407wmcs-openstack security group delete cb192346-e968-40cc-a940-20071edd0083
4408sg: cb69b9cd-3684-49c3-ac63-630ce43edab4 project: ldaptest4
4409delete sg cb69b9cd-3684-49c3-ac63-630ce43edab4 because project ldaptest4 doesn't exists
4410+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4411| Field | Value |
4412+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4413| created_at | 2020-06-29T21:20:31Z |
4414| description | Default security group |
4415| id | cb69b9cd-3684-49c3-ac63-630ce43edab4 |
4416| name | default |
4417| project_id | ldaptest4 |
4418| revision_number | 6 |
4419| rules | belongs_to_default_sg='True', created_at='2020-06-29T21:20:32Z', direction='ingress', ethertype='IPv4', |
4420| | id='209b2b48-d4ed-49a3-8483-31c06f40f86e', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4421| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1788', updated_at='2020-06-29T21:20:32Z' |
4422| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:32Z', direction='ingress', ethertype='IPv4', |
4423| | id='47046052-a3fe-47ae-b47f-ab2df8c6bbfc', port_range_max='65535', port_range_min='1', protocol='udp', |
4424| | remote_group_id='cb69b9cd-3684-49c3-ac63-630ce43edab4', standard_attr_id='1794', updated_at='2020-06-29T21:20:32Z' |
4425| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:32Z', direction='ingress', ethertype='IPv4', |
4426| | id='7a2e3131-f468-477b-99f4-e8f25acd300f', port_range_max='22', port_range_min='22', protocol='tcp', |
4427| | remote_group_id='cb69b9cd-3684-49c3-ac63-630ce43edab4', standard_attr_id='1791', updated_at='2020-06-29T21:20:32Z' |
4428| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:31Z', direction='egress', ethertype='IPv6', |
4429| | id='7d6d9a45-011a-4bd4-91a1-a58c354a2f59', standard_attr_id='1782', updated_at='2020-06-29T21:20:31Z' |
4430| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:31Z', direction='ingress', ethertype='IPv6', |
4431| | id='a736053e-e53b-4180-9a2a-34e94ee083e5', remote_group_id='cb69b9cd-3684-49c3-ac63-630ce43edab4', |
4432| | standard_attr_id='1779', updated_at='2020-06-29T21:20:31Z' |
4433| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:32Z', direction='ingress', ethertype='IPv4', |
4434| | id='ad7e5012-6282-4e88-83b4-7b32e5679d25', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4435| | standard_attr_id='1785', updated_at='2020-06-29T21:20:32Z' |
4436| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:31Z', direction='egress', ethertype='IPv4', |
4437| | id='c3f59249-9f56-4bd9-b91a-0848137e20b8', standard_attr_id='1776', updated_at='2020-06-29T21:20:31Z' |
4438| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:31Z', direction='ingress', ethertype='IPv4', |
4439| | id='f21b25f6-895d-48e1-b717-2ad1cecc682c', remote_group_id='cb69b9cd-3684-49c3-ac63-630ce43edab4', |
4440| | standard_attr_id='1773', updated_at='2020-06-29T21:20:31Z' |
4441| | belongs_to_default_sg='True', created_at='2020-06-29T21:20:32Z', direction='ingress', ethertype='IPv4', |
4442| | id='fa54f9ec-e43c-48a3-b618-6e4e7fcc09d3', protocol='icmp', remote_group_id='cb69b9cd-3684-49c3-ac63-630ce43edab4', |
4443| | standard_attr_id='1797', updated_at='2020-06-29T21:20:32Z' |
4444| shared | False |
4445| stateful | True |
4446| tags | [] |
4447| updated_at | 2020-06-29T21:20:32Z |
4448+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4449wmcs-openstack security group delete cb69b9cd-3684-49c3-ac63-630ce43edab4
4450sg: cbc10930-30f5-4896-9114-e2550feaaa0d project: devproject20
4451delete sg cbc10930-30f5-4896-9114-e2550feaaa0d because project devproject20 doesn't exists
4452+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4453| Field | Value |
4454+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4455| created_at | 2019-05-20T17:16:20Z |
4456| description | Default security group |
4457| id | cbc10930-30f5-4896-9114-e2550feaaa0d |
4458| name | default |
4459| project_id | devproject20 |
4460| revision_number | 0 |
4461| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:16:20Z', direction='ingress', ethertype='IPv6', |
4462| | id='34bfd59f-3d0a-4956-8ce9-63e09985698e', remote_group_id='cbc10930-30f5-4896-9114-e2550feaaa0d', |
4463| | standard_attr_id='458', updated_at='2019-05-20T17:16:20Z' |
4464| | belongs_to_default_sg='True', created_at='2019-05-20T17:16:20Z', direction='ingress', ethertype='IPv4', |
4465| | id='885336c9-5966-4d1b-8377-a061a13100a1', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4466| | standard_attr_id='460', updated_at='2019-05-20T17:16:20Z' |
4467| | belongs_to_default_sg='True', created_at='2019-05-20T17:16:21Z', direction='ingress', ethertype='IPv4', |
4468| | id='96063a32-843c-4d51-b4ad-1201adcd0287', port_range_max='22', port_range_min='22', protocol='tcp', |
4469| | remote_group_id='cbc10930-30f5-4896-9114-e2550feaaa0d', standard_attr_id='462', updated_at='2019-05-20T17:16:21Z' |
4470| | belongs_to_default_sg='True', created_at='2019-05-20T17:16:20Z', direction='egress', ethertype='IPv6', |
4471| | id='9e20b4a3-15c4-4415-89c0-706ab966a0c7', standard_attr_id='459', updated_at='2019-05-20T17:16:20Z' |
4472| | belongs_to_default_sg='True', created_at='2019-05-20T17:16:21Z', direction='ingress', ethertype='IPv4', |
4473| | id='a81b27c7-f9fb-4059-aa43-9df4fa560536', port_range_max='65535', port_range_min='1', protocol='udp', |
4474| | remote_group_id='cbc10930-30f5-4896-9114-e2550feaaa0d', standard_attr_id='463', updated_at='2019-05-20T17:16:21Z' |
4475| | belongs_to_default_sg='True', created_at='2019-05-20T17:16:21Z', direction='ingress', ethertype='IPv4', |
4476| | id='acf56528-4ef5-4c91-b90e-22a65d952b1f', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
4477| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='461', updated_at='2019-05-20T17:16:21Z' |
4478| | belongs_to_default_sg='True', created_at='2019-05-20T17:16:20Z', direction='ingress', ethertype='IPv4', |
4479| | id='f8c4ce89-0c76-418d-afe9-bc8dc07623e9', remote_group_id='cbc10930-30f5-4896-9114-e2550feaaa0d', |
4480| | standard_attr_id='456', updated_at='2019-05-20T17:16:20Z' |
4481| | belongs_to_default_sg='True', created_at='2019-05-20T17:16:20Z', direction='egress', ethertype='IPv4', |
4482| | id='ff97a8da-8620-4bba-b1c2-0b9e30b5e46a', standard_attr_id='457', updated_at='2019-05-20T17:16:20Z' |
4483| shared | False |
4484| stateful | True |
4485| tags | [] |
4486| updated_at | 2019-05-20T17:16:20Z |
4487+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4488wmcs-openstack security group delete cbc10930-30f5-4896-9114-e2550feaaa0d
4489sg: cbc9adaa-062b-4cff-9d0e-cb1da5907b4b project: ussuriprojecttest1
4490delete sg cbc9adaa-062b-4cff-9d0e-cb1da5907b4b because project ussuriprojecttest1 doesn't exists
4491+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4492| Field | Value |
4493+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4494| created_at | 2021-04-07T04:40:34Z |
4495| description | Default security group |
4496| id | cbc9adaa-062b-4cff-9d0e-cb1da5907b4b |
4497| name | default |
4498| project_id | ussuriprojecttest1 |
4499| revision_number | 6 |
4500| rules | belongs_to_default_sg='True', created_at='2021-04-07T04:40:34Z', direction='ingress', ethertype='IPv4', |
4501| | id='17fc95f3-9195-4ab2-b504-910729cd9e41', remote_group_id='cbc9adaa-062b-4cff-9d0e-cb1da5907b4b', |
4502| | standard_attr_id='3633', updated_at='2021-04-07T04:40:34Z' |
4503| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:35Z', direction='ingress', ethertype='IPv4', |
4504| | id='274a6888-c22a-4f6f-bb63-a32ba009dafb', protocol='udp', remote_group_id='cbc9adaa-062b-4cff-9d0e-cb1da5907b4b', |
4505| | standard_attr_id='3654', updated_at='2021-04-07T04:40:35Z' |
4506| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:35Z', direction='ingress', ethertype='IPv4', |
4507| | id='4b3e66f6-5c04-4c75-9bcf-8a360efcc68a', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4508| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3648', updated_at='2021-04-07T04:40:35Z' |
4509| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:35Z', direction='ingress', ethertype='IPv4', |
4510| | id='5987a277-671c-49ef-9189-adb11ed553fb', protocol='icmp', remote_group_id='cbc9adaa-062b-4cff-9d0e-cb1da5907b4b', |
4511| | standard_attr_id='3657', updated_at='2021-04-07T04:40:35Z' |
4512| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:34Z', direction='ingress', ethertype='IPv4', |
4513| | id='5fb2296d-fb42-474d-bd97-6a2525191b3e', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4514| | standard_attr_id='3645', updated_at='2021-04-07T04:40:34Z' |
4515| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:34Z', direction='egress', ethertype='IPv4', |
4516| | id='b620e6ad-8e4a-4c28-a9bf-9b6289f1f517', standard_attr_id='3636', updated_at='2021-04-07T04:40:34Z' |
4517| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:34Z', direction='ingress', ethertype='IPv6', |
4518| | id='ca3af09a-edf6-4797-9938-0660aa2f9ec6', remote_group_id='cbc9adaa-062b-4cff-9d0e-cb1da5907b4b', |
4519| | standard_attr_id='3639', updated_at='2021-04-07T04:40:34Z' |
4520| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:35Z', direction='ingress', ethertype='IPv4', |
4521| | id='e722cacc-e829-4a4f-b3d0-ec7b27f8c59e', port_range_max='22', port_range_min='22', protocol='tcp', |
4522| | remote_group_id='cbc9adaa-062b-4cff-9d0e-cb1da5907b4b', standard_attr_id='3651', updated_at='2021-04-07T04:40:35Z' |
4523| | belongs_to_default_sg='True', created_at='2021-04-07T04:40:34Z', direction='egress', ethertype='IPv6', |
4524| | id='f2705b64-10cc-4e89-88d6-b1cc4311ec80', standard_attr_id='3642', updated_at='2021-04-07T04:40:34Z' |
4525| shared | False |
4526| stateful | True |
4527| tags | [] |
4528| updated_at | 2021-04-07T04:40:35Z |
4529+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4530wmcs-openstack security group delete cbc9adaa-062b-4cff-9d0e-cb1da5907b4b
4531sg: ce3b3bd6-754c-4725-9ad9-b039ffa18920 project: this-should-faile
4532delete sg ce3b3bd6-754c-4725-9ad9-b039ffa18920 because project this-should-faile doesn't exists
4533+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4534| Field | Value |
4535+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4536| created_at | 2023-07-25T19:21:23Z |
4537| description | Default security group |
4538| id | ce3b3bd6-754c-4725-9ad9-b039ffa18920 |
4539| name | default |
4540| project_id | this-should-faile |
4541| revision_number | 6 |
4542| rules | belongs_to_default_sg='True', created_at='2023-07-25T19:21:24Z', direction='ingress', ethertype='IPv4', |
4543| | id='2bc65e34-0ebd-40d1-a713-d5c8ca3f5345', protocol='icmp', remote_group_id='ce3b3bd6-754c-4725-9ad9-b039ffa18920', |
4544| | standard_attr_id='4798694', updated_at='2023-07-25T19:21:24Z' |
4545| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='egress', ethertype='IPv4', |
4546| | id='45fc1d8a-bb22-4f71-a1f2-12127e87ca92', standard_attr_id='4798676', updated_at='2023-07-25T19:21:23Z' |
4547| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='ingress', ethertype='IPv4', id='5456c2af- |
4548| | faa0-4197-94df-7376c668560c', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4549| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4798686', updated_at='2023-07-25T19:21:23Z' |
4550| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='ingress', ethertype='IPv6', |
4551| | id='7083246e-69ee-44d1-829b-7e186f8e35ff', remote_group_id='ce3b3bd6-754c-4725-9ad9-b039ffa18920', |
4552| | standard_attr_id='4798679', updated_at='2023-07-25T19:21:23Z' |
4553| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='ingress', ethertype='IPv4', |
4554| | id='98b7a434-2782-4dff-b774-fb437b271648', port_range_max='22', port_range_min='22', protocol='tcp', |
4555| | remote_group_id='ce3b3bd6-754c-4725-9ad9-b039ffa18920', standard_attr_id='4798689', updated_at='2023-07-25T19:21:23Z' |
4556| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='ingress', ethertype='IPv4', |
4557| | id='a1fd108a-730b-4305-b8be-66e15896a3f0', remote_group_id='ce3b3bd6-754c-4725-9ad9-b039ffa18920', |
4558| | standard_attr_id='4798673', updated_at='2023-07-25T19:21:23Z' |
4559| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='ingress', ethertype='IPv4', |
4560| | id='ac2c07d9-91db-4df0-8771-6a99adeb16ab', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4561| | standard_attr_id='4798684', updated_at='2023-07-25T19:21:23Z' |
4562| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='egress', ethertype='IPv6', |
4563| | id='b41a3e9a-8f5f-4dda-919b-431a8f198f65', standard_attr_id='4798682', updated_at='2023-07-25T19:21:23Z' |
4564| | belongs_to_default_sg='True', created_at='2023-07-25T19:21:23Z', direction='ingress', ethertype='IPv4', |
4565| | id='daf63360-bdb6-4dc4-a491-7cf950194fab', protocol='udp', remote_group_id='ce3b3bd6-754c-4725-9ad9-b039ffa18920', |
4566| | standard_attr_id='4798691', updated_at='2023-07-25T19:21:23Z' |
4567| shared | False |
4568| stateful | True |
4569| tags | [] |
4570| updated_at | 2023-07-25T19:21:24Z |
4571+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4572wmcs-openstack security group delete ce3b3bd6-754c-4725-9ad9-b039ffa18920
4573sg: cfb369fc-1186-4e6c-b98b-0bf51e04952b project: ussuriprojecttest14
4574delete sg cfb369fc-1186-4e6c-b98b-0bf51e04952b because project ussuriprojecttest14 doesn't exists
4575+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4576| Field | Value |
4577+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4578| created_at | 2021-04-07T14:40:14Z |
4579| description | Default security group |
4580| id | cfb369fc-1186-4e6c-b98b-0bf51e04952b |
4581| name | default |
4582| project_id | ussuriprojecttest14 |
4583| revision_number | 6 |
4584| rules | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='ingress', ethertype='IPv4', |
4585| | id='01fb9b7b-18bb-4adf-b1b6-430869353c02', protocol='udp', remote_group_id='cfb369fc-1186-4e6c-b98b-0bf51e04952b', |
4586| | standard_attr_id='3984', updated_at='2021-04-07T14:40:14Z' |
4587| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='egress', ethertype='IPv4', id='516c22fa- |
4588| | efed-4126-98d1-bc15c32099af', standard_attr_id='3966', updated_at='2021-04-07T14:40:14Z' |
4589| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='egress', ethertype='IPv6', |
4590| | id='56e7b88d-49e9-4c79-8bc4-e0b85b98eb5c', standard_attr_id='3972', updated_at='2021-04-07T14:40:14Z' |
4591| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:15Z', direction='ingress', ethertype='IPv4', |
4592| | id='62405b89-6369-4c3e-b512-58f21eee919b', protocol='icmp', remote_group_id='cfb369fc-1186-4e6c-b98b-0bf51e04952b', |
4593| | standard_attr_id='3987', updated_at='2021-04-07T14:40:15Z' |
4594| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='ingress', ethertype='IPv4', |
4595| | id='7851bf83-8009-4c25-afc9-1c358728251f', port_range_max='22', port_range_min='22', protocol='tcp', |
4596| | remote_group_id='cfb369fc-1186-4e6c-b98b-0bf51e04952b', standard_attr_id='3981', updated_at='2021-04-07T14:40:14Z' |
4597| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='ingress', ethertype='IPv4', |
4598| | id='7eaf56c1-c49a-4f94-be12-028288382710', remote_group_id='cfb369fc-1186-4e6c-b98b-0bf51e04952b', |
4599| | standard_attr_id='3963', updated_at='2021-04-07T14:40:14Z' |
4600| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='ingress', ethertype='IPv6', |
4601| | id='a611c1f7-c490-4e5e-9d56-1672d6ac458b', remote_group_id='cfb369fc-1186-4e6c-b98b-0bf51e04952b', |
4602| | standard_attr_id='3969', updated_at='2021-04-07T14:40:14Z' |
4603| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='ingress', ethertype='IPv4', |
4604| | id='c6dcb5e4-bcfe-48f0-990f-50e09fa58911', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4605| | standard_attr_id='3975', updated_at='2021-04-07T14:40:14Z' |
4606| | belongs_to_default_sg='True', created_at='2021-04-07T14:40:14Z', direction='ingress', ethertype='IPv4', |
4607| | id='d0c00a8d-46c0-4db9-a93b-0e2b458a8fb4', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4608| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3978', updated_at='2021-04-07T14:40:14Z' |
4609| shared | False |
4610| stateful | True |
4611| tags | [] |
4612| updated_at | 2021-04-07T14:40:15Z |
4613+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4614wmcs-openstack security group delete cfb369fc-1186-4e6c-b98b-0bf51e04952b
4615sg: cfe63861-7afd-462c-a3aa-63649be51076 project: ussuriprojecttest16
4616delete sg cfe63861-7afd-462c-a3aa-63649be51076 because project ussuriprojecttest16 doesn't exists
4617+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4618| Field | Value |
4619+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4620| created_at | 2021-04-07T17:42:24Z |
4621| description | Default security group |
4622| id | cfe63861-7afd-462c-a3aa-63649be51076 |
4623| name | default |
4624| project_id | ussuriprojecttest16 |
4625| revision_number | 6 |
4626| rules | belongs_to_default_sg='True', created_at='2021-04-07T17:42:24Z', direction='egress', ethertype='IPv6', |
4627| | id='0a8ab42b-f079-4cbe-ba6a-9489425c4222', standard_attr_id='4032', updated_at='2021-04-07T17:42:24Z' |
4628| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:24Z', direction='egress', ethertype='IPv4', |
4629| | id='1e314f96-3fed-49f9-8c56-c05d06caa105', standard_attr_id='4026', updated_at='2021-04-07T17:42:24Z' |
4630| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:24Z', direction='ingress', ethertype='IPv4', id='2680aeca- |
4631| | dcbb-448e-a542-34f4e5abdba2', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4632| | standard_attr_id='4035', updated_at='2021-04-07T17:42:24Z' |
4633| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:25Z', direction='ingress', ethertype='IPv4', |
4634| | id='393b256b-e560-48aa-a864-84850cbf5865', port_range_max='22', port_range_min='22', protocol='tcp', |
4635| | remote_group_id='cfe63861-7afd-462c-a3aa-63649be51076', standard_attr_id='4041', updated_at='2021-04-07T17:42:25Z' |
4636| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:24Z', direction='ingress', ethertype='IPv6', |
4637| | id='3bb2d06e-4a9d-4d92-8b3a-a40d10bc08f0', remote_group_id='cfe63861-7afd-462c-a3aa-63649be51076', |
4638| | standard_attr_id='4029', updated_at='2021-04-07T17:42:24Z' |
4639| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:25Z', direction='ingress', ethertype='IPv4', |
4640| | id='700bd504-d73a-4817-b003-9bd6630f5c1d', protocol='udp', remote_group_id='cfe63861-7afd-462c-a3aa-63649be51076', |
4641| | standard_attr_id='4044', updated_at='2021-04-07T17:42:25Z' |
4642| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:25Z', direction='ingress', ethertype='IPv4', |
4643| | id='78c334fb-1ca0-4cee-9f40-58d6c61505f1', protocol='icmp', remote_group_id='cfe63861-7afd-462c-a3aa-63649be51076', |
4644| | standard_attr_id='4047', updated_at='2021-04-07T17:42:25Z' |
4645| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:24Z', direction='ingress', ethertype='IPv4', |
4646| | id='859e8124-fb10-4157-ad8c-e6305db8efa3', remote_group_id='cfe63861-7afd-462c-a3aa-63649be51076', |
4647| | standard_attr_id='4023', updated_at='2021-04-07T17:42:24Z' |
4648| | belongs_to_default_sg='True', created_at='2021-04-07T17:42:25Z', direction='ingress', ethertype='IPv4', |
4649| | id='c9677e6d-467e-4285-a3d9-d1195642c77e', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4650| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4038', updated_at='2021-04-07T17:42:25Z' |
4651| shared | False |
4652| stateful | True |
4653| tags | [] |
4654| updated_at | 2021-04-07T17:42:25Z |
4655+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4656wmcs-openstack security group delete cfe63861-7afd-462c-a3aa-63649be51076
4657sg: cff20fe6-74dd-4ca1-b8da-96b574971039 project: ussuriproject
4658delete sg cff20fe6-74dd-4ca1-b8da-96b574971039 because project ussuriproject doesn't exists
4659+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4660| Field | Value |
4661+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4662| created_at | 2021-04-02T17:28:51Z |
4663| description | Default security group |
4664| id | cff20fe6-74dd-4ca1-b8da-96b574971039 |
4665| name | default |
4666| project_id | ussuriproject |
4667| revision_number | 6 |
4668| rules | belongs_to_default_sg='True', created_at='2021-04-02T17:28:51Z', direction='ingress', ethertype='IPv4', |
4669| | id='30fee85d-1eea-4e0c-84fd-d68286c94aac', remote_group_id='cff20fe6-74dd-4ca1-b8da-96b574971039', |
4670| | standard_attr_id='3594', updated_at='2021-04-02T17:28:51Z' |
4671| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:51Z', direction='ingress', ethertype='IPv4', |
4672| | id='6c6d8570-e5ce-4f85-b076-2fe06e39708f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4673| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3609', updated_at='2021-04-02T17:28:51Z' |
4674| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:51Z', direction='egress', ethertype='IPv4', |
4675| | id='75a037fd-29c1-4401-a7e7-d85f25f6b654', standard_attr_id='3597', updated_at='2021-04-02T17:28:51Z' |
4676| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:52Z', direction='ingress', ethertype='IPv4', |
4677| | id='7cc1ae14-eb57-46e4-adf5-0f53d6aedb34', protocol='icmp', remote_group_id='cff20fe6-74dd-4ca1-b8da-96b574971039', |
4678| | standard_attr_id='3618', updated_at='2021-04-02T17:28:52Z' |
4679| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:51Z', direction='egress', ethertype='IPv6', |
4680| | id='86776bef-b48d-427b-a32a-8e3fea8e3f22', standard_attr_id='3603', updated_at='2021-04-02T17:28:51Z' |
4681| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:52Z', direction='ingress', ethertype='IPv4', |
4682| | id='999dd9a1-d4e2-4e60-9409-0423b504c058', protocol='udp', remote_group_id='cff20fe6-74dd-4ca1-b8da-96b574971039', |
4683| | standard_attr_id='3615', updated_at='2021-04-02T17:28:52Z' |
4684| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:51Z', direction='ingress', ethertype='IPv6', |
4685| | id='bbcfe586-3ea3-4aa3-a2d3-a22fc52a888b', remote_group_id='cff20fe6-74dd-4ca1-b8da-96b574971039', |
4686| | standard_attr_id='3600', updated_at='2021-04-02T17:28:51Z' |
4687| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:52Z', direction='ingress', ethertype='IPv4', |
4688| | id='c0c034e5-0f2b-4659-8015-05a9b2de2258', port_range_max='22', port_range_min='22', protocol='tcp', |
4689| | remote_group_id='cff20fe6-74dd-4ca1-b8da-96b574971039', standard_attr_id='3612', updated_at='2021-04-02T17:28:52Z' |
4690| | belongs_to_default_sg='True', created_at='2021-04-02T17:28:51Z', direction='ingress', ethertype='IPv4', |
4691| | id='f260e998-4ff0-4212-a663-a29653f8c283', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4692| | standard_attr_id='3606', updated_at='2021-04-02T17:28:51Z' |
4693| shared | False |
4694| stateful | True |
4695| tags | [] |
4696| updated_at | 2021-04-02T17:28:52Z |
4697+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4698wmcs-openstack security group delete cff20fe6-74dd-4ca1-b8da-96b574971039
4699sg: d02e099c-0fc2-4383-96a8-6b2032f7e79b project: devproject30
4700delete sg d02e099c-0fc2-4383-96a8-6b2032f7e79b because project devproject30 doesn't exists
4701+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4702| Field | Value |
4703+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4704| created_at | 2019-05-20T17:30:03Z |
4705| description | Default security group |
4706| id | d02e099c-0fc2-4383-96a8-6b2032f7e79b |
4707| name | default |
4708| project_id | devproject30 |
4709| revision_number | 0 |
4710| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:30:04Z', direction='ingress', ethertype='IPv4', |
4711| | id='09d6f6e6-21e4-4f3f-8d4e-34fa895cfc8a', port_range_max='65535', port_range_min='1', protocol='udp', |
4712| | remote_group_id='d02e099c-0fc2-4383-96a8-6b2032f7e79b', standard_attr_id='522', updated_at='2019-05-20T17:30:04Z' |
4713| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:03Z', direction='egress', ethertype='IPv4', |
4714| | id='0f5d22a5-3b26-4191-9897-9e198b25828f', standard_attr_id='516', updated_at='2019-05-20T17:30:03Z' |
4715| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:03Z', direction='egress', ethertype='IPv6', |
4716| | id='248a0815-8edd-4e95-b9d3-f7b3bceee6e4', standard_attr_id='518', updated_at='2019-05-20T17:30:03Z' |
4717| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:03Z', direction='ingress', ethertype='IPv4', |
4718| | id='3b47d84b-1cd5-4321-a071-345494826d96', remote_group_id='d02e099c-0fc2-4383-96a8-6b2032f7e79b', |
4719| | standard_attr_id='515', updated_at='2019-05-20T17:30:03Z' |
4720| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:04Z', direction='ingress', ethertype='IPv4', id='59bca0ab- |
4721| | be09-43fc-922d-baab70052957', protocol='icmp', remote_group_id='d02e099c-0fc2-4383-96a8-6b2032f7e79b', |
4722| | standard_attr_id='523', updated_at='2019-05-20T17:30:04Z' |
4723| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:03Z', direction='ingress', ethertype='IPv4', |
4724| | id='a1aad77f-a5a8-4719-823a-bc618a58133c', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4725| | standard_attr_id='519', updated_at='2019-05-20T17:30:03Z' |
4726| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:03Z', direction='ingress', ethertype='IPv4', |
4727| | id='acb2dc5c-9816-4f54-b4d7-357783ca8e1a', normalized_cidr='172.16.0.0/21', port_range_max='22', port_range_min='22', |
4728| | protocol='tcp', remote_ip_prefix='172.16.0.0/21', standard_attr_id='520', updated_at='2019-05-20T17:30:03Z' |
4729| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:03Z', direction='ingress', ethertype='IPv6', id='b489a6bb- |
4730| | ca0f-4d78-b8b4-7f723b8f4bb7', remote_group_id='d02e099c-0fc2-4383-96a8-6b2032f7e79b', standard_attr_id='517', |
4731| | updated_at='2019-05-20T17:30:03Z' |
4732| | belongs_to_default_sg='True', created_at='2019-05-20T17:30:04Z', direction='ingress', ethertype='IPv4', |
4733| | id='c0bbf3eb-b6af-4312-83fa-bb8bd6638c09', port_range_max='22', port_range_min='22', protocol='tcp', |
4734| | remote_group_id='d02e099c-0fc2-4383-96a8-6b2032f7e79b', standard_attr_id='521', updated_at='2019-05-20T17:30:04Z' |
4735| shared | False |
4736| stateful | True |
4737| tags | [] |
4738| updated_at | 2019-05-20T17:30:03Z |
4739+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4740wmcs-openstack security group delete d02e099c-0fc2-4383-96a8-6b2032f7e79b
4741sg: d2e75082-4146-409e-9d79-4adf113761e8 project: devproject2
4742delete sg d2e75082-4146-409e-9d79-4adf113761e8 because project devproject2 doesn't exists
4743+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4744| Field | Value |
4745+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4746| created_at | 2019-05-20T16:13:16Z |
4747| description | Default security group |
4748| id | d2e75082-4146-409e-9d79-4adf113761e8 |
4749| name | default |
4750| project_id | devproject2 |
4751| revision_number | 0 |
4752| rules | belongs_to_default_sg='True', created_at='2019-05-20T16:13:16Z', direction='egress', ethertype='IPv6', |
4753| | id='58c6a80d-9e38-411f-99d9-aa7e1a5a85a2', standard_attr_id='424', updated_at='2019-05-20T16:13:16Z' |
4754| | belongs_to_default_sg='True', created_at='2019-05-20T16:13:16Z', direction='egress', ethertype='IPv4', |
4755| | id='aa56847a-ef9b-47a2-b47e-0bdca0922d76', standard_attr_id='422', updated_at='2019-05-20T16:13:16Z' |
4756| | belongs_to_default_sg='True', created_at='2019-05-20T16:13:16Z', direction='ingress', ethertype='IPv6', |
4757| | id='c9aac115-252f-49e7-bca7-42e0b98a8009', remote_group_id='d2e75082-4146-409e-9d79-4adf113761e8', |
4758| | standard_attr_id='423', updated_at='2019-05-20T16:13:16Z' |
4759| | belongs_to_default_sg='True', created_at='2019-05-20T16:13:16Z', direction='ingress', ethertype='IPv4', id='f6411faa- |
4760| | aace-43ed-8443-ffcf488dacf9', remote_group_id='d2e75082-4146-409e-9d79-4adf113761e8', standard_attr_id='421', |
4761| | updated_at='2019-05-20T16:13:16Z' |
4762| shared | False |
4763| stateful | True |
4764| tags | [] |
4765| updated_at | 2019-05-20T16:13:16Z |
4766+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4767wmcs-openstack security group delete d2e75082-4146-409e-9d79-4adf113761e8
4768sg: d386dd2c-8931-429c-ad1f-8a31f07c3e30 project: tools
4769delete sg d386dd2c-8931-429c-ad1f-8a31f07c3e30 because project tools doesn't exists
4770+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4771| Field | Value |
4772+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4773| created_at | 2020-12-18T21:34:20Z |
4774| description | Default security group |
4775| id | d386dd2c-8931-429c-ad1f-8a31f07c3e30 |
4776| name | default |
4777| project_id | tools |
4778| revision_number | 7 |
4779| rules | belongs_to_default_sg='True', created_at='2020-12-18T21:34:20Z', direction='ingress', ethertype='IPv6', |
4780| | id='1f225e8c-bded-4a1d-9a2d-a1839798b38c', remote_group_id='d386dd2c-8931-429c-ad1f-8a31f07c3e30', |
4781| | standard_attr_id='2257', updated_at='2020-12-18T21:34:20Z' |
4782| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:20Z', direction='ingress', ethertype='IPv4', |
4783| | id='1fdc84a2-2388-4585-9c4b-0f3967a658cf', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4784| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='2266', updated_at='2020-12-18T21:34:20Z' |
4785| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:21Z', direction='ingress', ethertype='IPv4', |
4786| | id='2fee9b4c-87bf-460b-9560-d0322c79de39', port_range_max='65535', port_range_min='1', protocol='udp', |
4787| | remote_group_id='d386dd2c-8931-429c-ad1f-8a31f07c3e30', standard_attr_id='2272', updated_at='2020-12-18T21:34:21Z' |
4788| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:20Z', direction='egress', ethertype='IPv6', |
4789| | id='375ee835-221f-4c6d-bbe6-d7fcc100e517', standard_attr_id='2260', updated_at='2020-12-18T21:34:20Z' |
4790| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:20Z', direction='egress', ethertype='IPv4', |
4791| | id='3f54d491-dac9-467e-9603-1b0a3f693ce5', standard_attr_id='2254', updated_at='2020-12-18T21:34:20Z' |
4792| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:20Z', direction='ingress', ethertype='IPv4', |
4793| | id='90a1fea7-83e6-4cea-a7e3-dd8d20286d4a', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4794| | standard_attr_id='2263', updated_at='2020-12-18T21:34:20Z' |
4795| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:20Z', direction='ingress', ethertype='IPv4', |
4796| | id='9bb41da5-5fde-4580-b5d5-411656750aec', remote_group_id='d386dd2c-8931-429c-ad1f-8a31f07c3e30', |
4797| | standard_attr_id='2251', updated_at='2020-12-18T21:34:20Z' |
4798| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:20Z', direction='ingress', ethertype='IPv4', |
4799| | id='b8e599b2-4866-49bf-af9a-6426bf45fdba', port_range_max='22', port_range_min='22', protocol='tcp', |
4800| | remote_group_id='d386dd2c-8931-429c-ad1f-8a31f07c3e30', standard_attr_id='2269', updated_at='2020-12-18T21:34:20Z' |
4801| | belongs_to_default_sg='True', created_at='2020-12-18T21:34:21Z', direction='ingress', ethertype='IPv4', |
4802| | id='d37ca95b-9dcb-4954-9b6e-a8bdf57b0c09', protocol='icmp', remote_group_id='d386dd2c-8931-429c-ad1f-8a31f07c3e30', |
4803| | standard_attr_id='2275', updated_at='2020-12-18T21:34:21Z' |
4804| | belongs_to_default_sg='True', created_at='2022-06-28T21:30:48Z', direction='ingress', ethertype='IPv4', |
4805| | id='f6b7532f-1793-4a2e-879c-497fcfccd5d9', protocol='udp', remote_group_id='d386dd2c-8931-429c-ad1f-8a31f07c3e30', |
4806| | standard_attr_id='4687902', updated_at='2022-06-28T21:30:48Z' |
4807| shared | False |
4808| stateful | True |
4809| tags | [] |
4810| updated_at | 2022-06-28T21:30:48Z |
4811+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4812wmcs-openstack security group delete d386dd2c-8931-429c-ad1f-8a31f07c3e30
4813sg: d3bf6b7a-bdd7-4da8-9524-595c0b6210d2 project: tools-codfw1dev
4814sg: d3c0a986-2068-4cc4-b244-9ad268bdfaf7 project: e9c81e47e38c42499f9dcfed221962e7
4815delete sg d3c0a986-2068-4cc4-b244-9ad268bdfaf7 because project e9c81e47e38c42499f9dcfed221962e7 doesn't exists
4816+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4817| Field | Value |
4818+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4819| created_at | 2024-09-06T18:58:44Z |
4820| description | Default security group |
4821| id | d3c0a986-2068-4cc4-b244-9ad268bdfaf7 |
4822| name | default |
4823| project_id | e9c81e47e38c42499f9dcfed221962e7 |
4824| revision_number | 6 |
4825| rules | belongs_to_default_sg='True', created_at='2024-09-06T18:58:44Z', direction='ingress', ethertype='IPv6', |
4826| | id='191a8424-0c1e-44ee-b408-8b0b88cbe778', remote_group_id='d3c0a986-2068-4cc4-b244-9ad268bdfaf7', |
4827| | standard_attr_id='4940701', updated_at='2024-09-06T18:58:44Z' |
4828| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:44Z', direction='egress', ethertype='IPv6', |
4829| | id='25ca4015-3c4a-4e99-a481-861dcdfdf5dc', standard_attr_id='4940698', updated_at='2024-09-06T18:58:44Z' |
4830| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:44Z', direction='ingress', ethertype='IPv4', |
4831| | id='4c4b02a9-a73a-4ca4-a156-ac8d283dfe24', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4832| | standard_attr_id='4940707', updated_at='2024-09-06T18:58:44Z' |
4833| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:45Z', direction='ingress', ethertype='IPv4', |
4834| | id='7d286938-c4b6-431a-894b-9738ff9d18b6', port_range_max='22', port_range_min='22', protocol='tcp', |
4835| | remote_group_id='d3c0a986-2068-4cc4-b244-9ad268bdfaf7', standard_attr_id='4940713', updated_at='2024-09-06T18:58:45Z' |
4836| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:44Z', direction='ingress', ethertype='IPv4', |
4837| | id='a4f0246f-b80c-4f7b-a346-afc03d0b16ef', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4838| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4940710', updated_at='2024-09-06T18:58:44Z' |
4839| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:45Z', direction='ingress', ethertype='IPv4', |
4840| | id='b23c74ce-d529-4a3a-80f6-65ceaa5cc4a0', protocol='udp', remote_group_id='d3c0a986-2068-4cc4-b244-9ad268bdfaf7', |
4841| | standard_attr_id='4940716', updated_at='2024-09-06T18:58:45Z' |
4842| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:44Z', direction='ingress', ethertype='IPv4', |
4843| | id='c6709d16-9658-48ef-a67a-3c20f3c07a4b', remote_group_id='d3c0a986-2068-4cc4-b244-9ad268bdfaf7', |
4844| | standard_attr_id='4940695', updated_at='2024-09-06T18:58:44Z' |
4845| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:44Z', direction='egress', ethertype='IPv4', |
4846| | id='cba14af0-817b-4ec8-bbff-a8d3dcac1342', standard_attr_id='4940704', updated_at='2024-09-06T18:58:44Z' |
4847| | belongs_to_default_sg='True', created_at='2024-09-06T18:58:45Z', direction='ingress', ethertype='IPv4', id='d8b42def- |
4848| | ee97-4191-a5bc-7cd6a56336b5', protocol='icmp', remote_group_id='d3c0a986-2068-4cc4-b244-9ad268bdfaf7', |
4849| | standard_attr_id='4940719', updated_at='2024-09-06T18:58:45Z' |
4850| shared | False |
4851| stateful | True |
4852| tags | [] |
4853| updated_at | 2024-09-06T18:58:45Z |
4854+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4855wmcs-openstack security group delete d3c0a986-2068-4cc4-b244-9ad268bdfaf7
4856sg: d7c46d34-3313-4d23-a550-6ecc25c541dc project: f93ed978bc5943c4b9c3fb1bfc70d3b4
4857delete sg d7c46d34-3313-4d23-a550-6ecc25c541dc because project f93ed978bc5943c4b9c3fb1bfc70d3b4 doesn't exists
4858+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4859| Field | Value |
4860+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4861| created_at | 2024-09-06T18:58:52Z |
4862| description | |
4863| id | d7c46d34-3313-4d23-a550-6ecc25c541dc |
4864| name | deployment-alpha-wikikube-v127-opu2kaihxmez-secgroup_kube_minion-b2rrawq7spvz |
4865| project_id | f93ed978bc5943c4b9c3fb1bfc70d3b4 |
4866| revision_number | 10 |
4867| rules | created_at='2024-09-06T18:58:54Z', direction='ingress', ethertype='IPv4', id='17743b03-fadd-407e-bb06-9eea9f2917f9', |
4868| | protocol='udp', remote_group_id='d7c46d34-3313-4d23-a550-6ecc25c541dc', standard_attr_id='4940803', |
4869| | updated_at='2024-09-06T18:58:54Z' |
4870| | created_at='2024-09-06T18:58:53Z', direction='ingress', ethertype='IPv4', id='17fb4204-5078-43cf-a7a9-442b12c44e63', |
4871| | protocol='udp', remote_group_id='b3b1382d-7a09-4a64-96bd-01354dc3d5aa', standard_attr_id='4940794', |
4872| | updated_at='2024-09-06T18:58:53Z' |
4873| | created_at='2024-09-06T18:58:53Z', direction='ingress', ethertype='IPv4', id='2fe93651-4a49-4059-99b0-0b370dd45a42', |
4874| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4940785', updated_at='2024-09-06T18:58:53Z' |
4875| | created_at='2024-09-06T18:58:52Z', direction='egress', ethertype='IPv4', id='30fc3542-f5b6-4df4-acaf-b3fc3387241e', |
4876| | standard_attr_id='4940779', updated_at='2024-09-06T18:58:52Z' |
4877| | created_at='2024-09-06T18:58:53Z', direction='ingress', ethertype='IPv4', id='83c41112-0d7f-4ad8-a4d6-ed572e42e757', |
4878| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4940788', |
4879| | updated_at='2024-09-06T18:58:53Z' |
4880| | created_at='2024-09-06T18:58:52Z', direction='egress', ethertype='IPv6', id='b94a28e6-195c-4960-b73a-d2f7bc672012', |
4881| | standard_attr_id='4940776', updated_at='2024-09-06T18:58:52Z' |
4882| | created_at='2024-09-06T18:58:52Z', direction='ingress', ethertype='IPv4', id='ba6a69bc-8f58-43c1-b144-ace3f7b0a160', |
4883| | protocol='icmp', standard_attr_id='4940782', updated_at='2024-09-06T18:58:52Z' |
4884| | created_at='2024-09-06T18:58:53Z', direction='ingress', ethertype='IPv4', id='c5a4483b-b8b6-4a3a-bbf7-9132bc0e8e5e', |
4885| | protocol='tcp', remote_group_id='b3b1382d-7a09-4a64-96bd-01354dc3d5aa', standard_attr_id='4940791', |
4886| | updated_at='2024-09-06T18:58:53Z' |
4887| | created_at='2024-09-06T18:58:54Z', direction='ingress', ethertype='IPv4', id='d529ee8c-b119-4894-9034-1d74ff1e304b', |
4888| | normalized_cidr='10.100.0.0/16', protocol='udp', remote_ip_prefix='10.100.0.0/16', standard_attr_id='4940800', |
4889| | updated_at='2024-09-06T18:58:54Z' |
4890| | created_at='2024-09-06T18:58:54Z', direction='ingress', ethertype='IPv4', id='d5c36b34-84c5-4a86-a81a-6d053b96a0d0', |
4891| | normalized_cidr='10.100.0.0/16', protocol='tcp', remote_ip_prefix='10.100.0.0/16', standard_attr_id='4940797', |
4892| | updated_at='2024-09-06T18:58:54Z' |
4893| | created_at='2024-09-06T18:58:54Z', direction='ingress', ethertype='IPv4', id='f51ea234-49dd-47cd-8678-ae59dabb1602', |
4894| | protocol='tcp', remote_group_id='d7c46d34-3313-4d23-a550-6ecc25c541dc', standard_attr_id='4940806', |
4895| | updated_at='2024-09-06T18:58:54Z' |
4896| shared | False |
4897| stateful | True |
4898| tags | [] |
4899| updated_at | 2024-09-06T18:58:54Z |
4900+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4901wmcs-openstack security group delete d7c46d34-3313-4d23-a550-6ecc25c541dc
4902sg: d7e3bb5b-7020-49e7-9c40-b73cb575a842 project: projectcreatetest2
4903delete sg d7e3bb5b-7020-49e7-9c40-b73cb575a842 because project projectcreatetest2 doesn't exists
4904+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4905| Field | Value |
4906+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4907| created_at | 2021-02-09T18:00:34Z |
4908| description | Default security group |
4909| id | d7e3bb5b-7020-49e7-9c40-b73cb575a842 |
4910| name | default |
4911| project_id | projectcreatetest2 |
4912| revision_number | 6 |
4913| rules | belongs_to_default_sg='True', created_at='2021-02-09T18:00:34Z', direction='ingress', ethertype='IPv4', id='3c0da4ff- |
4914| | adba-4eec-9c0b-c06814ebb413', remote_group_id='d7e3bb5b-7020-49e7-9c40-b73cb575a842', standard_attr_id='2764', |
4915| | updated_at='2021-02-09T18:00:34Z' |
4916| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:34Z', direction='egress', ethertype='IPv6', |
4917| | id='436fdfef-9c7f-4fb0-be80-7e3f8b2d2ccf', standard_attr_id='2773', updated_at='2021-02-09T18:00:34Z' |
4918| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:35Z', direction='ingress', ethertype='IPv4', |
4919| | id='4980c097-9f52-40f5-8a59-7bcbedf21ddc', protocol='icmp', remote_group_id='d7e3bb5b-7020-49e7-9c40-b73cb575a842', |
4920| | standard_attr_id='2788', updated_at='2021-02-09T18:00:35Z' |
4921| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:34Z', direction='ingress', ethertype='IPv6', |
4922| | id='5fefff9b-4edf-4aea-973e-b43356de43cd', remote_group_id='d7e3bb5b-7020-49e7-9c40-b73cb575a842', |
4923| | standard_attr_id='2770', updated_at='2021-02-09T18:00:34Z' |
4924| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:34Z', direction='egress', ethertype='IPv4', |
4925| | id='74e97e18-e74b-4935-b8e1-5a607ea93c53', standard_attr_id='2767', updated_at='2021-02-09T18:00:34Z' |
4926| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:35Z', direction='ingress', ethertype='IPv4', |
4927| | id='a94366f6-529d-499e-afe0-fba8077834f0', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4928| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='2779', updated_at='2021-02-09T18:00:35Z' |
4929| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:35Z', direction='ingress', ethertype='IPv4', |
4930| | id='c6988e47-3a23-439e-ba30-f1ee329680e8', port_range_max='65535', port_range_min='1', protocol='udp', |
4931| | remote_group_id='d7e3bb5b-7020-49e7-9c40-b73cb575a842', standard_attr_id='2785', updated_at='2021-02-09T18:00:35Z' |
4932| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:35Z', direction='ingress', ethertype='IPv4', |
4933| | id='c7f2cc91-0c27-47f7-9336-cd8c7074bf02', port_range_max='22', port_range_min='22', protocol='tcp', |
4934| | remote_group_id='d7e3bb5b-7020-49e7-9c40-b73cb575a842', standard_attr_id='2782', updated_at='2021-02-09T18:00:35Z' |
4935| | belongs_to_default_sg='True', created_at='2021-02-09T18:00:35Z', direction='ingress', ethertype='IPv4', |
4936| | id='d10256ee-3e66-407d-8378-1c63dfa832b1', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4937| | standard_attr_id='2776', updated_at='2021-02-09T18:00:35Z' |
4938| shared | False |
4939| stateful | True |
4940| tags | [] |
4941| updated_at | 2021-02-09T18:00:35Z |
4942+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4943wmcs-openstack security group delete d7e3bb5b-7020-49e7-9c40-b73cb575a842
4944sg: d952e74b-5c70-4933-9108-ce20fe66d1fe project: ussuriprojecttest5
4945delete sg d952e74b-5c70-4933-9108-ce20fe66d1fe because project ussuriprojecttest5 doesn't exists
4946+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4947| Field | Value |
4948+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4949| created_at | 2021-04-07T11:47:10Z |
4950| description | Default security group |
4951| id | d952e74b-5c70-4933-9108-ce20fe66d1fe |
4952| name | default |
4953| project_id | ussuriprojecttest5 |
4954| revision_number | 6 |
4955| rules | belongs_to_default_sg='True', created_at='2021-04-07T11:47:10Z', direction='ingress', ethertype='IPv4', |
4956| | id='165b6193-c5cb-4dc9-a1c8-dc817dbc1f7f', port_range_max='22', port_range_min='22', protocol='tcp', |
4957| | remote_group_id='d952e74b-5c70-4933-9108-ce20fe66d1fe', standard_attr_id='3711', updated_at='2021-04-07T11:47:10Z' |
4958| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:11Z', direction='ingress', ethertype='IPv4', |
4959| | id='2404c54e-1768-4247-98c2-50b48edde939', protocol='udp', remote_group_id='d952e74b-5c70-4933-9108-ce20fe66d1fe', |
4960| | standard_attr_id='3714', updated_at='2021-04-07T11:47:11Z' |
4961| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:11Z', direction='ingress', ethertype='IPv4', |
4962| | id='35a5f2cf-b948-4001-9191-256ce34ced90', protocol='icmp', remote_group_id='d952e74b-5c70-4933-9108-ce20fe66d1fe', |
4963| | standard_attr_id='3717', updated_at='2021-04-07T11:47:11Z' |
4964| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:10Z', direction='ingress', ethertype='IPv4', |
4965| | id='3be51e8b-5a9e-40be-9245-f92c604a5a39', remote_group_id='d952e74b-5c70-4933-9108-ce20fe66d1fe', |
4966| | standard_attr_id='3693', updated_at='2021-04-07T11:47:10Z' |
4967| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:10Z', direction='ingress', ethertype='IPv6', |
4968| | id='4ab01f0e-6dfc-4779-a525-4d0c1cfc66c7', remote_group_id='d952e74b-5c70-4933-9108-ce20fe66d1fe', |
4969| | standard_attr_id='3699', updated_at='2021-04-07T11:47:10Z' |
4970| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:10Z', direction='egress', ethertype='IPv4', |
4971| | id='b854e083-f808-4ce5-a1a5-0e3d6b12ad7f', standard_attr_id='3696', updated_at='2021-04-07T11:47:10Z' |
4972| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:10Z', direction='ingress', ethertype='IPv4', |
4973| | id='c6924a96-4a37-4911-9acc-60c9eebf24a9', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
4974| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3708', updated_at='2021-04-07T11:47:10Z' |
4975| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:10Z', direction='egress', ethertype='IPv6', |
4976| | id='ce91a6b6-133d-4566-af64-04792e7fca59', standard_attr_id='3702', updated_at='2021-04-07T11:47:10Z' |
4977| | belongs_to_default_sg='True', created_at='2021-04-07T11:47:10Z', direction='ingress', ethertype='IPv4', |
4978| | id='e5b84c5f-8b57-4754-b2c3-94c46b8331c1', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4979| | standard_attr_id='3705', updated_at='2021-04-07T11:47:10Z' |
4980| shared | False |
4981| stateful | True |
4982| tags | [] |
4983| updated_at | 2021-04-07T11:47:11Z |
4984+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4985wmcs-openstack security group delete d952e74b-5c70-4933-9108-ce20fe66d1fe
4986sg: da11253f-c18b-4d81-9aa6-7ee78f5ab497 project: 3d7969334f0c4675a8c4fc43a5c5a65f
4987delete sg da11253f-c18b-4d81-9aa6-7ee78f5ab497 because project 3d7969334f0c4675a8c4fc43a5c5a65f doesn't exists
4988+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4989| Field | Value |
4990+-----------------+-------------------------------------------------------------------------------------------------------------------------+
4991| created_at | 2024-09-07T00:00:18Z |
4992| description | Default security group |
4993| id | da11253f-c18b-4d81-9aa6-7ee78f5ab497 |
4994| name | default |
4995| project_id | 3d7969334f0c4675a8c4fc43a5c5a65f |
4996| revision_number | 6 |
4997| rules | belongs_to_default_sg='True', created_at='2024-09-07T00:00:18Z', direction='ingress', ethertype='IPv4', |
4998| | id='316f0c68-c0af-4ab8-b121-274a09a705e6', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
4999| | standard_attr_id='4940938', updated_at='2024-09-07T00:00:18Z' |
5000| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:18Z', direction='egress', ethertype='IPv6', |
5001| | id='46749636-7dfa-45d9-966a-c0f819583dfa', standard_attr_id='4940929', updated_at='2024-09-07T00:00:18Z' |
5002| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:18Z', direction='ingress', ethertype='IPv4', |
5003| | id='7c0e0396-70ef-4cd6-a67c-c9a9fb57d91e', remote_group_id='da11253f-c18b-4d81-9aa6-7ee78f5ab497', |
5004| | standard_attr_id='4940926', updated_at='2024-09-07T00:00:18Z' |
5005| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:19Z', direction='ingress', ethertype='IPv4', |
5006| | id='7e05e0f2-bf9f-49fd-84ef-15bb99d01225', protocol='icmp', remote_group_id='da11253f-c18b-4d81-9aa6-7ee78f5ab497', |
5007| | standard_attr_id='4940950', updated_at='2024-09-07T00:00:19Z' |
5008| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:19Z', direction='ingress', ethertype='IPv4', |
5009| | id='8783d51c-7094-460c-b141-9c12ee48560a', protocol='udp', remote_group_id='da11253f-c18b-4d81-9aa6-7ee78f5ab497', |
5010| | standard_attr_id='4940947', updated_at='2024-09-07T00:00:19Z' |
5011| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:18Z', direction='egress', ethertype='IPv4', |
5012| | id='9e944307-5981-43e5-802e-edfd4341539c', standard_attr_id='4940935', updated_at='2024-09-07T00:00:18Z' |
5013| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:18Z', direction='ingress', ethertype='IPv4', |
5014| | id='d5d9e0ca-d7bb-499e-ad82-24d7ecc6db55', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5015| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4940941', updated_at='2024-09-07T00:00:18Z' |
5016| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:18Z', direction='ingress', ethertype='IPv4', |
5017| | id='d752ede5-9cd1-434a-9314-1fea9425e2e9', port_range_max='22', port_range_min='22', protocol='tcp', |
5018| | remote_group_id='da11253f-c18b-4d81-9aa6-7ee78f5ab497', standard_attr_id='4940944', updated_at='2024-09-07T00:00:18Z' |
5019| | belongs_to_default_sg='True', created_at='2024-09-07T00:00:18Z', direction='ingress', ethertype='IPv6', |
5020| | id='f3aa2c3e-20ac-4828-91aa-82a6d90b98cb', remote_group_id='da11253f-c18b-4d81-9aa6-7ee78f5ab497', |
5021| | standard_attr_id='4940932', updated_at='2024-09-07T00:00:18Z' |
5022| shared | False |
5023| stateful | True |
5024| tags | [] |
5025| updated_at | 2024-09-07T00:00:19Z |
5026+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5027wmcs-openstack security group delete da11253f-c18b-4d81-9aa6-7ee78f5ab497
5028sg: da721575-6e01-4d20-a49f-0b0c9738f7fb project: ldaptestproject2
5029delete sg da721575-6e01-4d20-a49f-0b0c9738f7fb because project ldaptestproject2 doesn't exists
5030+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5031| Field | Value |
5032+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5033| created_at | 2020-04-06T23:42:33Z |
5034| description | Default security group |
5035| id | da721575-6e01-4d20-a49f-0b0c9738f7fb |
5036| name | default |
5037| project_id | ldaptestproject2 |
5038| revision_number | 6 |
5039| rules | belongs_to_default_sg='True', created_at='2020-04-06T23:42:33Z', direction='egress', ethertype='IPv4', |
5040| | id='0a5dd274-9f07-4b42-8e21-bc6d78f6475f', standard_attr_id='1241', updated_at='2020-04-06T23:42:33Z' |
5041| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:34Z', direction='ingress', ethertype='IPv4', |
5042| | id='12f2054d-44e8-4836-b3a7-522845af1c53', port_range_max='65535', port_range_min='1', protocol='udp', |
5043| | remote_group_id='da721575-6e01-4d20-a49f-0b0c9738f7fb', standard_attr_id='1247', updated_at='2020-04-06T23:42:34Z' |
5044| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:33Z', direction='egress', ethertype='IPv6', |
5045| | id='28456748-3b59-44d4-b247-628feffa559a', standard_attr_id='1243', updated_at='2020-04-06T23:42:33Z' |
5046| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:33Z', direction='ingress', ethertype='IPv4', |
5047| | id='5c245d94-2996-42f3-9c6b-eecb01e60a05', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5048| | standard_attr_id='1244', updated_at='2020-04-06T23:42:33Z' |
5049| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:33Z', direction='ingress', ethertype='IPv4', |
5050| | id='778fe263-03f5-469b-90af-2376b6aa446c', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5051| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1245', updated_at='2020-04-06T23:42:33Z' |
5052| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:34Z', direction='ingress', ethertype='IPv4', |
5053| | id='8ad8395f-ab31-4b96-a441-742eee4690de', port_range_max='22', port_range_min='22', protocol='tcp', |
5054| | remote_group_id='da721575-6e01-4d20-a49f-0b0c9738f7fb', standard_attr_id='1246', updated_at='2020-04-06T23:42:34Z' |
5055| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:34Z', direction='ingress', ethertype='IPv4', |
5056| | id='99b98646-ba94-46ba-83be-b85505278066', protocol='icmp', remote_group_id='da721575-6e01-4d20-a49f-0b0c9738f7fb', |
5057| | standard_attr_id='1248', updated_at='2020-04-06T23:42:34Z' |
5058| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:33Z', direction='ingress', ethertype='IPv6', |
5059| | id='a1fd5442-8c0d-4db7-846a-4b900517ef6e', remote_group_id='da721575-6e01-4d20-a49f-0b0c9738f7fb', |
5060| | standard_attr_id='1242', updated_at='2020-04-06T23:42:33Z' |
5061| | belongs_to_default_sg='True', created_at='2020-04-06T23:42:33Z', direction='ingress', ethertype='IPv4', |
5062| | id='e0421630-9999-4e18-bf80-64762a052ba7', remote_group_id='da721575-6e01-4d20-a49f-0b0c9738f7fb', |
5063| | standard_attr_id='1240', updated_at='2020-04-06T23:42:33Z' |
5064| shared | False |
5065| stateful | True |
5066| tags | [] |
5067| updated_at | 2020-04-06T23:42:34Z |
5068+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5069wmcs-openstack security group delete da721575-6e01-4d20-a49f-0b0c9738f7fb
5070sg: db14f99d-305e-4a66-8d4c-c8c3302e067c project: projectcreationtest
5071delete sg db14f99d-305e-4a66-8d4c-c8c3302e067c because project projectcreationtest doesn't exists
5072+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5073| Field | Value |
5074+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5075| created_at | 2023-05-24T16:42:51Z |
5076| description | Default security group |
5077| id | db14f99d-305e-4a66-8d4c-c8c3302e067c |
5078| name | default |
5079| project_id | projectcreationtest |
5080| revision_number | 6 |
5081| rules | belongs_to_default_sg='True', created_at='2023-05-24T16:42:52Z', direction='ingress', ethertype='IPv4', |
5082| | id='023093c2-500d-4ad8-8afa-c9a531d290f6', protocol='icmp', remote_group_id='db14f99d-305e-4a66-8d4c-c8c3302e067c', |
5083| | standard_attr_id='4782268', updated_at='2023-05-24T16:42:52Z' |
5084| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:52Z', direction='ingress', ethertype='IPv4', |
5085| | id='3ee85515-3bc5-42b5-993b-63a2d7213ea4', port_range_max='22', port_range_min='22', protocol='tcp', |
5086| | remote_group_id='db14f99d-305e-4a66-8d4c-c8c3302e067c', standard_attr_id='4782262', updated_at='2023-05-24T16:42:52Z' |
5087| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:51Z', direction='ingress', ethertype='IPv4', |
5088| | id='5b7d5e96-8b1b-4d49-a251-7192c68e12e0', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5089| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4782259', updated_at='2023-05-24T16:42:51Z' |
5090| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:51Z', direction='egress', ethertype='IPv6', |
5091| | id='8032168b-596e-441b-b4e2-d975a506b1f3', standard_attr_id='4782253', updated_at='2023-05-24T16:42:51Z' |
5092| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:52Z', direction='ingress', ethertype='IPv4', |
5093| | id='a970ffd8-93f9-4a33-a472-ad831a893df5', protocol='udp', remote_group_id='db14f99d-305e-4a66-8d4c-c8c3302e067c', |
5094| | standard_attr_id='4782265', updated_at='2023-05-24T16:42:52Z' |
5095| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:51Z', direction='ingress', ethertype='IPv4', |
5096| | id='cf1b682f-08d1-4f78-b2e1-956c3b4cec78', remote_group_id='db14f99d-305e-4a66-8d4c-c8c3302e067c', |
5097| | standard_attr_id='4782244', updated_at='2023-05-24T16:42:51Z' |
5098| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:51Z', direction='egress', ethertype='IPv4', |
5099| | id='da89d30b-30ff-43aa-a845-b39801fed783', standard_attr_id='4782247', updated_at='2023-05-24T16:42:51Z' |
5100| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:51Z', direction='ingress', ethertype='IPv6', id='ed4e8ced- |
5101| | eac4-4c9e-8e08-276f1d4925e5', remote_group_id='db14f99d-305e-4a66-8d4c-c8c3302e067c', standard_attr_id='4782250', |
5102| | updated_at='2023-05-24T16:42:51Z' |
5103| | belongs_to_default_sg='True', created_at='2023-05-24T16:42:51Z', direction='ingress', ethertype='IPv4', |
5104| | id='f3a2dbf7-311e-4f08-a005-754ea04f1569', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5105| | standard_attr_id='4782256', updated_at='2023-05-24T16:42:51Z' |
5106| shared | False |
5107| stateful | True |
5108| tags | [] |
5109| updated_at | 2023-05-24T16:42:52Z |
5110+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5111wmcs-openstack security group delete db14f99d-305e-4a66-8d4c-c8c3302e067c
5112sg: dbb57246-1b54-48ac-85f7-b51f6ab67e85 project: cinderprojecttest2
5113delete sg dbb57246-1b54-48ac-85f7-b51f6ab67e85 because project cinderprojecttest2 doesn't exists
5114+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5115| Field | Value |
5116+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5117| created_at | 2020-12-11T20:16:01Z |
5118| description | Default security group |
5119| id | dbb57246-1b54-48ac-85f7-b51f6ab67e85 |
5120| name | default |
5121| project_id | cinderprojecttest2 |
5122| revision_number | 6 |
5123| rules | belongs_to_default_sg='True', created_at='2020-12-11T20:16:01Z', direction='ingress', ethertype='IPv4', |
5124| | id='2f912bd0-b307-4644-8535-f997fc168965', port_range_max='22', port_range_min='22', protocol='tcp', |
5125| | remote_group_id='dbb57246-1b54-48ac-85f7-b51f6ab67e85', standard_attr_id='2197', updated_at='2020-12-11T20:16:01Z' |
5126| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:01Z', direction='egress', ethertype='IPv4', |
5127| | id='32c28e69-d58a-4c9e-a071-059984df1b5c', standard_attr_id='2182', updated_at='2020-12-11T20:16:01Z' |
5128| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:01Z', direction='ingress', ethertype='IPv4', |
5129| | id='48a8db7b-41ed-4187-9230-552f736b3595', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5130| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='2194', updated_at='2020-12-11T20:16:01Z' |
5131| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:02Z', direction='ingress', ethertype='IPv4', |
5132| | id='543276ea-01fb-49e4-8c31-ddf8c8266b62', protocol='icmp', remote_group_id='dbb57246-1b54-48ac-85f7-b51f6ab67e85', |
5133| | standard_attr_id='2203', updated_at='2020-12-11T20:16:02Z' |
5134| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:01Z', direction='ingress', ethertype='IPv6', |
5135| | id='727fc7d4-aaaf-4e77-8854-b40970a10b36', remote_group_id='dbb57246-1b54-48ac-85f7-b51f6ab67e85', |
5136| | standard_attr_id='2185', updated_at='2020-12-11T20:16:01Z' |
5137| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:01Z', direction='ingress', ethertype='IPv4', |
5138| | id='7a4b63dc-5000-4c24-9955-70d37aa99f04', remote_group_id='dbb57246-1b54-48ac-85f7-b51f6ab67e85', |
5139| | standard_attr_id='2179', updated_at='2020-12-11T20:16:01Z' |
5140| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:02Z', direction='ingress', ethertype='IPv4', |
5141| | id='946d4281-6258-4293-8b00-2566e84d74f0', port_range_max='65535', port_range_min='1', protocol='udp', |
5142| | remote_group_id='dbb57246-1b54-48ac-85f7-b51f6ab67e85', standard_attr_id='2200', updated_at='2020-12-11T20:16:02Z' |
5143| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:01Z', direction='ingress', ethertype='IPv4', |
5144| | id='ea728a3f-71e1-4f9b-93a8-19e37676591f', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5145| | standard_attr_id='2191', updated_at='2020-12-11T20:16:01Z' |
5146| | belongs_to_default_sg='True', created_at='2020-12-11T20:16:01Z', direction='egress', ethertype='IPv6', |
5147| | id='f0ec505c-a525-41ad-b3c3-1bf485d32433', standard_attr_id='2188', updated_at='2020-12-11T20:16:01Z' |
5148| shared | False |
5149| stateful | True |
5150| tags | [] |
5151| updated_at | 2020-12-11T20:16:02Z |
5152+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5153wmcs-openstack security group delete dbb57246-1b54-48ac-85f7-b51f6ab67e85
5154sg: dd83352d-2c0f-4927-a26a-9122e707febd project: ldaptestproject6
5155delete sg dd83352d-2c0f-4927-a26a-9122e707febd because project ldaptestproject6 doesn't exists
5156+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5157| Field | Value |
5158+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5159| created_at | 2020-04-06T23:51:34Z |
5160| description | Default security group |
5161| id | dd83352d-2c0f-4927-a26a-9122e707febd |
5162| name | default |
5163| project_id | ldaptestproject6 |
5164| revision_number | 6 |
5165| rules | belongs_to_default_sg='True', created_at='2020-04-06T23:51:34Z', direction='egress', ethertype='IPv4', |
5166| | id='42cce4b5-b780-4f67-8b25-a00dcbb6519d', standard_attr_id='1281', updated_at='2020-04-06T23:51:34Z' |
5167| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:34Z', direction='ingress', ethertype='IPv4', |
5168| | id='5dd67a56-718f-48c4-91aa-9a31966f5d88', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5169| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1285', updated_at='2020-04-06T23:51:34Z' |
5170| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:35Z', direction='ingress', ethertype='IPv4', |
5171| | id='67a11915-000c-4098-a832-9c1091fc12a4', port_range_max='22', port_range_min='22', protocol='tcp', |
5172| | remote_group_id='dd83352d-2c0f-4927-a26a-9122e707febd', standard_attr_id='1286', updated_at='2020-04-06T23:51:35Z' |
5173| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:34Z', direction='ingress', ethertype='IPv6', |
5174| | id='787fe161-afc7-4361-a1bc-9d3d2cc40a6e', remote_group_id='dd83352d-2c0f-4927-a26a-9122e707febd', |
5175| | standard_attr_id='1282', updated_at='2020-04-06T23:51:34Z' |
5176| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:36Z', direction='ingress', ethertype='IPv4', |
5177| | id='9ae958cd-3940-4bb2-826a-e589a9d25340', protocol='icmp', remote_group_id='dd83352d-2c0f-4927-a26a-9122e707febd', |
5178| | standard_attr_id='1288', updated_at='2020-04-06T23:51:36Z' |
5179| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:34Z', direction='ingress', ethertype='IPv4', |
5180| | id='aefbba86-cfe7-4e70-bae6-08b412023598', remote_group_id='dd83352d-2c0f-4927-a26a-9122e707febd', |
5181| | standard_attr_id='1280', updated_at='2020-04-06T23:51:34Z' |
5182| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:34Z', direction='egress', ethertype='IPv6', |
5183| | id='b234e93b-21af-4920-9d55-e4905abbc910', standard_attr_id='1283', updated_at='2020-04-06T23:51:34Z' |
5184| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:34Z', direction='ingress', ethertype='IPv4', |
5185| | id='e0fa3eb1-f9cc-42fa-a20a-545895b866fd', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5186| | standard_attr_id='1284', updated_at='2020-04-06T23:51:34Z' |
5187| | belongs_to_default_sg='True', created_at='2020-04-06T23:51:35Z', direction='ingress', ethertype='IPv4', |
5188| | id='fb1cd98a-909b-447d-9d0f-cc57ad698d46', port_range_max='65535', port_range_min='1', protocol='udp', |
5189| | remote_group_id='dd83352d-2c0f-4927-a26a-9122e707febd', standard_attr_id='1287', updated_at='2020-04-06T23:51:35Z' |
5190| shared | False |
5191| stateful | True |
5192| tags | [] |
5193| updated_at | 2020-04-06T23:51:36Z |
5194+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5195wmcs-openstack security group delete dd83352d-2c0f-4927-a26a-9122e707febd
5196sg: de5ed328-99cd-4484-8cc0-979e94b503a8 project: fe3b7fc3acd044ca985933a5df5f3764
5197delete sg de5ed328-99cd-4484-8cc0-979e94b503a8 because project fe3b7fc3acd044ca985933a5df5f3764 doesn't exists
5198+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5199| Field | Value |
5200+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5201| created_at | 2024-08-30T20:04:02Z |
5202| description | Default security group |
5203| id | de5ed328-99cd-4484-8cc0-979e94b503a8 |
5204| name | default |
5205| project_id | fe3b7fc3acd044ca985933a5df5f3764 |
5206| revision_number | 6 |
5207| rules | belongs_to_default_sg='True', created_at='2024-08-30T20:04:03Z', direction='ingress', ethertype='IPv4', |
5208| | id='057d08d3-4788-411d-a1e2-aab8481801b7', port_range_max='22', port_range_min='22', protocol='tcp', |
5209| | remote_group_id='de5ed328-99cd-4484-8cc0-979e94b503a8', standard_attr_id='4937644', updated_at='2024-08-30T20:04:03Z' |
5210| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:03Z', direction='ingress', ethertype='IPv4', |
5211| | id='09dfbe99-646d-49ed-abf3-620d766bfce5', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5212| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4937641', updated_at='2024-08-30T20:04:03Z' |
5213| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:02Z', direction='egress', ethertype='IPv6', |
5214| | id='14bf4a4d-9265-4aa2-93de-1b0c31416b36', standard_attr_id='4937629', updated_at='2024-08-30T20:04:02Z' |
5215| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:04Z', direction='ingress', ethertype='IPv4', |
5216| | id='34540fb8-f230-4d77-937d-d80ac9b42dc8', protocol='icmp', remote_group_id='de5ed328-99cd-4484-8cc0-979e94b503a8', |
5217| | standard_attr_id='4937650', updated_at='2024-08-30T20:04:04Z' |
5218| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:03Z', direction='ingress', ethertype='IPv4', |
5219| | id='3b5597bf-2ae5-4332-9c35-fc03b346ce00', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5220| | standard_attr_id='4937638', updated_at='2024-08-30T20:04:03Z' |
5221| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:02Z', direction='ingress', ethertype='IPv4', |
5222| | id='7adf84b6-14ee-495f-b878-482f5331dc7c', remote_group_id='de5ed328-99cd-4484-8cc0-979e94b503a8', |
5223| | standard_attr_id='4937626', updated_at='2024-08-30T20:04:02Z' |
5224| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:02Z', direction='ingress', ethertype='IPv6', |
5225| | id='91ba59c2-2b8f-443c-96c8-4685d820d044', remote_group_id='de5ed328-99cd-4484-8cc0-979e94b503a8', |
5226| | standard_attr_id='4937632', updated_at='2024-08-30T20:04:02Z' |
5227| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:03Z', direction='ingress', ethertype='IPv4', |
5228| | id='b03d6866-32b5-4726-a138-c0ac054d7a7a', protocol='udp', remote_group_id='de5ed328-99cd-4484-8cc0-979e94b503a8', |
5229| | standard_attr_id='4937647', updated_at='2024-08-30T20:04:03Z' |
5230| | belongs_to_default_sg='True', created_at='2024-08-30T20:04:02Z', direction='egress', ethertype='IPv4', |
5231| | id='b671d737-f118-414a-9a89-235e1c87cdd6', standard_attr_id='4937635', updated_at='2024-08-30T20:04:02Z' |
5232| shared | False |
5233| stateful | True |
5234| tags | [] |
5235| updated_at | 2024-08-30T20:04:04Z |
5236+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5237wmcs-openstack security group delete de5ed328-99cd-4484-8cc0-979e94b503a8
5238sg: deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce project: policy-test-creation
5239delete sg deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce because project policy-test-creation doesn't exists
5240+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5241| Field | Value |
5242+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5243| created_at | 2021-04-11T16:43:54Z |
5244| description | Default security group |
5245| id | deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce |
5246| name | default |
5247| project_id | policy-test-creation |
5248| revision_number | 6 |
5249| rules | belongs_to_default_sg='True', created_at='2021-04-11T16:43:55Z', direction='ingress', ethertype='IPv4', |
5250| | id='11dd3db8-d72f-4474-a67c-8f53a53305e8', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5251| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4167', updated_at='2021-04-11T16:43:55Z' |
5252| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:55Z', direction='ingress', ethertype='IPv4', |
5253| | id='3f08d475-f0d2-469d-8c4e-c19a9f85aeeb', port_range_max='22', port_range_min='22', protocol='tcp', |
5254| | remote_group_id='deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce', standard_attr_id='4170', updated_at='2021-04-11T16:43:55Z' |
5255| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:54Z', direction='ingress', ethertype='IPv4', |
5256| | id='5003753e-9ca8-4329-b05a-2dc209bb4df8', remote_group_id='deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce', |
5257| | standard_attr_id='4152', updated_at='2021-04-11T16:43:54Z' |
5258| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:55Z', direction='ingress', ethertype='IPv4', id='543322be- |
5259| | dfb4-4254-aeab-8f7406463320', protocol='udp', remote_group_id='deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce', |
5260| | standard_attr_id='4173', updated_at='2021-04-11T16:43:55Z' |
5261| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:55Z', direction='ingress', ethertype='IPv4', |
5262| | id='659dba7b-138a-46d2-9801-78ad3fd5044e', protocol='icmp', remote_group_id='deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce', |
5263| | standard_attr_id='4176', updated_at='2021-04-11T16:43:55Z' |
5264| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:54Z', direction='egress', ethertype='IPv4', |
5265| | id='7cbc9525-80d4-4ceb-aff3-36e78e0d5258', standard_attr_id='4155', updated_at='2021-04-11T16:43:54Z' |
5266| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:54Z', direction='egress', ethertype='IPv6', |
5267| | id='85fea3f5-4834-4c93-912f-d9746eaa31ad', standard_attr_id='4161', updated_at='2021-04-11T16:43:54Z' |
5268| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:54Z', direction='ingress', ethertype='IPv4', |
5269| | id='976f9a60-b265-4d84-8e13-f29b5b11710c', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5270| | standard_attr_id='4164', updated_at='2021-04-11T16:43:54Z' |
5271| | belongs_to_default_sg='True', created_at='2021-04-11T16:43:54Z', direction='ingress', ethertype='IPv6', |
5272| | id='b5ecea15-6dc1-4cdd-abf4-fedf77aa1491', remote_group_id='deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce', |
5273| | standard_attr_id='4158', updated_at='2021-04-11T16:43:54Z' |
5274| shared | False |
5275| stateful | True |
5276| tags | [] |
5277| updated_at | 2021-04-11T16:43:55Z |
5278+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5279wmcs-openstack security group delete deb596b9-ac4a-4c64-ab97-7f2fc9bf16ce
5280sg: df3de65a-b60f-4f93-b2f0-87c9465b79f9 project: unsafe-project-name
5281delete sg df3de65a-b60f-4f93-b2f0-87c9465b79f9 because project unsafe-project-name doesn't exists
5282+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5283| Field | Value |
5284+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5285| created_at | 2024-05-31T21:14:59Z |
5286| description | Default security group |
5287| id | df3de65a-b60f-4f93-b2f0-87c9465b79f9 |
5288| name | default |
5289| project_id | unsafe-project-name |
5290| revision_number | 6 |
5291| rules | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='ingress', ethertype='IPv4', |
5292| | id='45ce6ad4-e3a7-4d32-b94d-01acf7365b04', protocol='icmp', remote_group_id='df3de65a-b60f-4f93-b2f0-87c9465b79f9', |
5293| | standard_attr_id='4906899', updated_at='2024-05-31T21:15:00Z' |
5294| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='egress', ethertype='IPv4', |
5295| | id='4f8763b8-c77b-4a26-a566-68a8c474f3a8', standard_attr_id='4906884', updated_at='2024-05-31T21:15:00Z' |
5296| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='ingress', ethertype='IPv4', |
5297| | id='6dd6d6f5-f54e-4a6f-ba47-f4b7709a0165', port_range_max='22', port_range_min='22', protocol='tcp', |
5298| | remote_group_id='df3de65a-b60f-4f93-b2f0-87c9465b79f9', standard_attr_id='4906893', updated_at='2024-05-31T21:15:00Z' |
5299| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='ingress', ethertype='IPv4', |
5300| | id='7f1b823c-4efd-4ce7-bea3-3f3134e17985', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5301| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4906890', updated_at='2024-05-31T21:15:00Z' |
5302| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='ingress', ethertype='IPv4', |
5303| | id='b25b2583-12e6-409d-88d8-0227e2c52832', protocol='udp', remote_group_id='df3de65a-b60f-4f93-b2f0-87c9465b79f9', |
5304| | standard_attr_id='4906896', updated_at='2024-05-31T21:15:00Z' |
5305| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='ingress', ethertype='IPv4', |
5306| | id='b72c2b5d-c2b0-4eae-b2d7-158839771994', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5307| | standard_attr_id='4906887', updated_at='2024-05-31T21:15:00Z' |
5308| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='egress', ethertype='IPv6', |
5309| | id='c1257324-1141-4a37-bfa8-b568392de66f', standard_attr_id='4906878', updated_at='2024-05-31T21:15:00Z' |
5310| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='ingress', ethertype='IPv6', |
5311| | id='cfc20e78-195e-4c1f-b25c-6772a6389502', remote_group_id='df3de65a-b60f-4f93-b2f0-87c9465b79f9', |
5312| | standard_attr_id='4906881', updated_at='2024-05-31T21:15:00Z' |
5313| | belongs_to_default_sg='True', created_at='2024-05-31T21:15:00Z', direction='ingress', ethertype='IPv4', |
5314| | id='ecf3869d-d849-4ebb-8bac-b64433af63d5', remote_group_id='df3de65a-b60f-4f93-b2f0-87c9465b79f9', |
5315| | standard_attr_id='4906875', updated_at='2024-05-31T21:15:00Z' |
5316| shared | False |
5317| stateful | True |
5318| tags | [] |
5319| updated_at | 2024-05-31T21:15:00Z |
5320+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5321wmcs-openstack security group delete df3de65a-b60f-4f93-b2f0-87c9465b79f9
5322sg: e4f965cf-97fb-45a7-b90a-a323fcc69030 project: ldaptestproject8
5323delete sg e4f965cf-97fb-45a7-b90a-a323fcc69030 because project ldaptestproject8 doesn't exists
5324+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5325| Field | Value |
5326+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5327| created_at | 2020-04-07T00:02:34Z |
5328| description | Default security group |
5329| id | e4f965cf-97fb-45a7-b90a-a323fcc69030 |
5330| name | default |
5331| project_id | ldaptestproject8 |
5332| revision_number | 6 |
5333| rules | belongs_to_default_sg='True', created_at='2020-04-07T00:02:35Z', direction='ingress', ethertype='IPv4', |
5334| | id='0d855aa5-9d71-4e00-883b-3e734bc3d21b', protocol='icmp', remote_group_id='e4f965cf-97fb-45a7-b90a-a323fcc69030', |
5335| | standard_attr_id='1308', updated_at='2020-04-07T00:02:35Z' |
5336| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:35Z', direction='ingress', ethertype='IPv4', |
5337| | id='1e1101f3-6b58-4a5e-a57c-83384a58bca8', port_range_max='22', port_range_min='22', protocol='tcp', |
5338| | remote_group_id='e4f965cf-97fb-45a7-b90a-a323fcc69030', standard_attr_id='1306', updated_at='2020-04-07T00:02:35Z' |
5339| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:35Z', direction='ingress', ethertype='IPv4', |
5340| | id='2aa9b1c3-b3c9-4366-8e5a-7a8e39329ce9', port_range_max='65535', port_range_min='1', protocol='udp', |
5341| | remote_group_id='e4f965cf-97fb-45a7-b90a-a323fcc69030', standard_attr_id='1307', updated_at='2020-04-07T00:02:35Z' |
5342| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:34Z', direction='ingress', ethertype='IPv4', |
5343| | id='30de53d2-480d-4063-bacf-5dbbf76e7fc8', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5344| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1305', updated_at='2020-04-07T00:02:34Z' |
5345| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:34Z', direction='egress', ethertype='IPv4', |
5346| | id='36585dc6-1465-4b0f-853e-766f617df975', standard_attr_id='1301', updated_at='2020-04-07T00:02:34Z' |
5347| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:34Z', direction='ingress', ethertype='IPv4', |
5348| | id='89cc64d1-4b48-4cb5-bc64-486a3d9f14ae', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5349| | standard_attr_id='1304', updated_at='2020-04-07T00:02:34Z' |
5350| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:34Z', direction='ingress', ethertype='IPv4', |
5351| | id='8cd05c90-a052-4b3a-8282-3e849666289a', remote_group_id='e4f965cf-97fb-45a7-b90a-a323fcc69030', |
5352| | standard_attr_id='1300', updated_at='2020-04-07T00:02:34Z' |
5353| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:34Z', direction='egress', ethertype='IPv6', |
5354| | id='97a93085-3895-496d-a5af-0a9f7cf4d0b0', standard_attr_id='1303', updated_at='2020-04-07T00:02:34Z' |
5355| | belongs_to_default_sg='True', created_at='2020-04-07T00:02:34Z', direction='ingress', ethertype='IPv6', |
5356| | id='9ed5dc71-9b8a-42bc-bd04-ddfe9f9113d5', remote_group_id='e4f965cf-97fb-45a7-b90a-a323fcc69030', |
5357| | standard_attr_id='1302', updated_at='2020-04-07T00:02:34Z' |
5358| shared | False |
5359| stateful | True |
5360| tags | [] |
5361| updated_at | 2020-04-07T00:02:35Z |
5362+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5363wmcs-openstack security group delete e4f965cf-97fb-45a7-b90a-a323fcc69030
5364sg: e6a2f842-ece3-4f10-ae6f-d2a8dc50889c project: cloudinfra-codfw1dev
5365sg: e7d81cc0-d165-4f6f-b63a-0e665e9fc1cb project: trove
5366sg: e84bc86d-d534-439d-b4aa-b20863a6b88c project: devproject16
5367delete sg e84bc86d-d534-439d-b4aa-b20863a6b88c because project devproject16 doesn't exists
5368+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5369| Field | Value |
5370+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5371| created_at | 2019-05-20T17:12:39Z |
5372| description | Default security group |
5373| id | e84bc86d-d534-439d-b4aa-b20863a6b88c |
5374| name | default |
5375| project_id | devproject16 |
5376| revision_number | 0 |
5377| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:12:39Z', direction='ingress', ethertype='IPv6', |
5378| | id='4a3d729f-61a7-4ced-967e-cf4ca6f3c578', remote_group_id='e84bc86d-d534-439d-b4aa-b20863a6b88c', |
5379| | standard_attr_id='448', updated_at='2019-05-20T17:12:39Z' |
5380| | belongs_to_default_sg='True', created_at='2019-05-20T17:12:39Z', direction='ingress', ethertype='IPv4', |
5381| | id='5ca12d12-8908-47a9-a836-134c8d7f59a7', remote_group_id='e84bc86d-d534-439d-b4aa-b20863a6b88c', |
5382| | standard_attr_id='446', updated_at='2019-05-20T17:12:39Z' |
5383| | belongs_to_default_sg='True', created_at='2019-05-20T17:12:39Z', direction='egress', ethertype='IPv6', |
5384| | id='8143ef40-b9c3-471f-9e7c-c19f0965bcca', standard_attr_id='449', updated_at='2019-05-20T17:12:39Z' |
5385| | belongs_to_default_sg='True', created_at='2019-05-20T17:12:39Z', direction='egress', ethertype='IPv4', |
5386| | id='a6cb69f6-e019-4b63-b6d2-f6fbf5bf10b0', standard_attr_id='447', updated_at='2019-05-20T17:12:39Z' |
5387| shared | False |
5388| stateful | True |
5389| tags | [] |
5390| updated_at | 2019-05-20T17:12:39Z |
5391+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5392wmcs-openstack security group delete e84bc86d-d534-439d-b4aa-b20863a6b88c
5393sg: e9c01373-cd9d-4677-9fb6-e57ee0a96f8d project: c98f46cfc109456fa357e7afa9042d7e
5394delete sg e9c01373-cd9d-4677-9fb6-e57ee0a96f8d because project c98f46cfc109456fa357e7afa9042d7e doesn't exists
5395+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5396| Field | Value |
5397+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5398| created_at | 2024-08-24T02:19:25Z |
5399| description | Default security group |
5400| id | e9c01373-cd9d-4677-9fb6-e57ee0a96f8d |
5401| name | default |
5402| project_id | c98f46cfc109456fa357e7afa9042d7e |
5403| revision_number | 6 |
5404| rules | belongs_to_default_sg='True', created_at='2024-08-24T02:19:26Z', direction='ingress', ethertype='IPv4', |
5405| | id='18e40ec9-c56a-4c8c-a81b-324641977dff', port_range_max='22', port_range_min='22', protocol='tcp', |
5406| | remote_group_id='e9c01373-cd9d-4677-9fb6-e57ee0a96f8d', standard_attr_id='4934365', updated_at='2024-08-24T02:19:26Z' |
5407| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:25Z', direction='ingress', ethertype='IPv4', |
5408| | id='1e9d2c92-695c-4f32-b649-06fbef252db6', remote_group_id='e9c01373-cd9d-4677-9fb6-e57ee0a96f8d', |
5409| | standard_attr_id='4934347', updated_at='2024-08-24T02:19:25Z' |
5410| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:25Z', direction='ingress', ethertype='IPv6', |
5411| | id='3bc3ba09-d3d6-4774-8621-16ed498b3ec4', remote_group_id='e9c01373-cd9d-4677-9fb6-e57ee0a96f8d', |
5412| | standard_attr_id='4934353', updated_at='2024-08-24T02:19:25Z' |
5413| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:25Z', direction='ingress', ethertype='IPv4', |
5414| | id='424afe0b-202f-4b23-9f09-13bbf00cb65f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5415| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4934362', updated_at='2024-08-24T02:19:25Z' |
5416| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:26Z', direction='ingress', ethertype='IPv4', |
5417| | id='43ad90a4-6471-483c-ac7b-c215c5486797', protocol='udp', remote_group_id='e9c01373-cd9d-4677-9fb6-e57ee0a96f8d', |
5418| | standard_attr_id='4934368', updated_at='2024-08-24T02:19:26Z' |
5419| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:25Z', direction='egress', ethertype='IPv4', |
5420| | id='5499cd4b-abd2-44dd-9344-f8feadb701d2', standard_attr_id='4934356', updated_at='2024-08-24T02:19:25Z' |
5421| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:26Z', direction='ingress', ethertype='IPv4', |
5422| | id='c3533d12-548f-4100-898f-34830e381556', protocol='icmp', remote_group_id='e9c01373-cd9d-4677-9fb6-e57ee0a96f8d', |
5423| | standard_attr_id='4934371', updated_at='2024-08-24T02:19:26Z' |
5424| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:25Z', direction='ingress', ethertype='IPv4', |
5425| | id='c82cd392-e317-4023-8ab0-95d9a07f1a95', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5426| | standard_attr_id='4934359', updated_at='2024-08-24T02:19:25Z' |
5427| | belongs_to_default_sg='True', created_at='2024-08-24T02:19:25Z', direction='egress', ethertype='IPv6', |
5428| | id='fc930d56-183f-466e-b462-f39c134bfd05', standard_attr_id='4934350', updated_at='2024-08-24T02:19:25Z' |
5429| shared | False |
5430| stateful | True |
5431| tags | [] |
5432| updated_at | 2024-08-24T02:19:27Z |
5433+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5434wmcs-openstack security group delete e9c01373-cd9d-4677-9fb6-e57ee0a96f8d
5435sg: ea56975f-ade9-42fe-bcbe-e0428e822ac3 project: ussuriprojecttest8
5436delete sg ea56975f-ade9-42fe-bcbe-e0428e822ac3 because project ussuriprojecttest8 doesn't exists
5437+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5438| Field | Value |
5439+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5440| created_at | 2021-04-07T12:12:07Z |
5441| description | Default security group |
5442| id | ea56975f-ade9-42fe-bcbe-e0428e822ac3 |
5443| name | default |
5444| project_id | ussuriprojecttest8 |
5445| revision_number | 6 |
5446| rules | belongs_to_default_sg='True', created_at='2021-04-07T12:12:07Z', direction='egress', ethertype='IPv4', |
5447| | id='22046c60-7130-4a63-9c8f-fc169cd70bc3', standard_attr_id='3786', updated_at='2021-04-07T12:12:07Z' |
5448| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:07Z', direction='ingress', ethertype='IPv4', |
5449| | id='47fa9ba5-28d8-4efe-a464-280ecf348ff2', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5450| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='3798', updated_at='2021-04-07T12:12:07Z' |
5451| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:07Z', direction='ingress', ethertype='IPv4', |
5452| | id='9e3b73d3-1f10-4585-b954-a564298a5b7a', remote_group_id='ea56975f-ade9-42fe-bcbe-e0428e822ac3', |
5453| | standard_attr_id='3783', updated_at='2021-04-07T12:12:07Z' |
5454| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:08Z', direction='ingress', ethertype='IPv4', |
5455| | id='b7620bab-3bda-43aa-a2e7-74882f0b8e7f', protocol='udp', remote_group_id='ea56975f-ade9-42fe-bcbe-e0428e822ac3', |
5456| | standard_attr_id='3804', updated_at='2021-04-07T12:12:08Z' |
5457| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:07Z', direction='ingress', ethertype='IPv4', |
5458| | id='b8ff5026-80dc-41c9-84d9-38ba50e244f8', port_range_max='22', port_range_min='22', protocol='tcp', |
5459| | remote_group_id='ea56975f-ade9-42fe-bcbe-e0428e822ac3', standard_attr_id='3801', updated_at='2021-04-07T12:12:07Z' |
5460| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:07Z', direction='egress', ethertype='IPv6', |
5461| | id='bd8f9067-86dc-48b0-a3b7-bc81b34333f1', standard_attr_id='3792', updated_at='2021-04-07T12:12:07Z' |
5462| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:07Z', direction='ingress', ethertype='IPv6', |
5463| | id='e0c9b4cf-c427-4e52-861d-477ee5cbc4f0', remote_group_id='ea56975f-ade9-42fe-bcbe-e0428e822ac3', |
5464| | standard_attr_id='3789', updated_at='2021-04-07T12:12:07Z' |
5465| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:07Z', direction='ingress', ethertype='IPv4', |
5466| | id='e5c176aa-b69d-4d03-a035-e0b441d7bb0a', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5467| | standard_attr_id='3795', updated_at='2021-04-07T12:12:07Z' |
5468| | belongs_to_default_sg='True', created_at='2021-04-07T12:12:08Z', direction='ingress', ethertype='IPv4', |
5469| | id='f18e5ac0-8594-4a8b-812e-1bfb21fbf00b', protocol='icmp', remote_group_id='ea56975f-ade9-42fe-bcbe-e0428e822ac3', |
5470| | standard_attr_id='3807', updated_at='2021-04-07T12:12:08Z' |
5471| shared | False |
5472| stateful | True |
5473| tags | [] |
5474| updated_at | 2021-04-07T12:12:08Z |
5475+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5476wmcs-openstack security group delete ea56975f-ade9-42fe-bcbe-e0428e822ac3
5477sg: ecbf331f-8788-4dd3-b872-1808a0928223 project: trove
5478sg: edad4a12-f5db-4ed9-be27-b2064b1e0048 project: ldaptest1
5479delete sg edad4a12-f5db-4ed9-be27-b2064b1e0048 because project ldaptest1 doesn't exists
5480+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5481| Field | Value |
5482+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5483| created_at | 2020-06-29T21:09:54Z |
5484| description | Default security group |
5485| id | edad4a12-f5db-4ed9-be27-b2064b1e0048 |
5486| name | default |
5487| project_id | ldaptest1 |
5488| revision_number | 6 |
5489| rules | belongs_to_default_sg='True', created_at='2020-06-29T21:09:55Z', direction='ingress', ethertype='IPv4', |
5490| | id='0fcc08a9-0c86-4372-9185-0238f5c07ac9', port_range_max='65535', port_range_min='1', protocol='udp', |
5491| | remote_group_id='edad4a12-f5db-4ed9-be27-b2064b1e0048', standard_attr_id='1704', updated_at='2020-06-29T21:09:55Z' |
5492| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:55Z', direction='ingress', ethertype='IPv4', |
5493| | id='2278a4bc-820b-447d-9412-27561e4e94dc', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5494| | standard_attr_id='1695', updated_at='2020-06-29T21:09:55Z' |
5495| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:54Z', direction='egress', ethertype='IPv4', |
5496| | id='2dd7253a-9430-45db-9b3d-91f7b873dd2c', standard_attr_id='1686', updated_at='2020-06-29T21:09:54Z' |
5497| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:54Z', direction='egress', ethertype='IPv6', |
5498| | id='2fe84eb1-a754-4ea6-878c-e5ff57de51c1', standard_attr_id='1692', updated_at='2020-06-29T21:09:54Z' |
5499| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:54Z', direction='ingress', ethertype='IPv4', |
5500| | id='356258aa-3451-49cc-b583-f7804f222983', remote_group_id='edad4a12-f5db-4ed9-be27-b2064b1e0048', |
5501| | standard_attr_id='1683', updated_at='2020-06-29T21:09:54Z' |
5502| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:55Z', direction='ingress', ethertype='IPv4', |
5503| | id='41e8b9a0-95ee-4df7-8456-35b48e4f76a4', port_range_max='22', port_range_min='22', protocol='tcp', |
5504| | remote_group_id='edad4a12-f5db-4ed9-be27-b2064b1e0048', standard_attr_id='1701', updated_at='2020-06-29T21:09:55Z' |
5505| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:55Z', direction='ingress', ethertype='IPv4', |
5506| | id='7ef92fd2-7a4a-4ef0-9916-05c135289c83', protocol='icmp', remote_group_id='edad4a12-f5db-4ed9-be27-b2064b1e0048', |
5507| | standard_attr_id='1707', updated_at='2020-06-29T21:09:55Z' |
5508| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:55Z', direction='ingress', ethertype='IPv4', |
5509| | id='f6626792-3fca-4b25-b763-a75d43de7f2f', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5510| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='1698', updated_at='2020-06-29T21:09:55Z' |
5511| | belongs_to_default_sg='True', created_at='2020-06-29T21:09:54Z', direction='ingress', ethertype='IPv6', |
5512| | id='f7b59034-d1f4-4ce6-ad9d-0d4ee34decc3', remote_group_id='edad4a12-f5db-4ed9-be27-b2064b1e0048', |
5513| | standard_attr_id='1689', updated_at='2020-06-29T21:09:54Z' |
5514| shared | False |
5515| stateful | True |
5516| tags | [] |
5517| updated_at | 2020-06-29T21:09:55Z |
5518+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5519wmcs-openstack security group delete edad4a12-f5db-4ed9-be27-b2064b1e0048
5520sg: eddabed8-474b-417e-af55-2ad3a30c03e2 project: labtest-proxy
5521delete sg eddabed8-474b-417e-af55-2ad3a30c03e2 because project labtest-proxy doesn't exists
5522+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5523| Field | Value |
5524+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5525| created_at | 2018-12-12T21:42:56Z |
5526| description | |
5527| id | eddabed8-474b-417e-af55-2ad3a30c03e2 |
5528| name | proxy-api |
5529| project_id | labtest-proxy |
5530| revision_number | 0 |
5531| rules | created_at='2018-12-12T21:42:56Z', direction='egress', ethertype='IPv6', id='3b375a08-b4a7-4a7b-a4da-4dfb25185aba', |
5532| | standard_attr_id='399', updated_at='2018-12-12T21:42:56Z' |
5533| | created_at='2018-12-12T21:43:23Z', direction='ingress', ethertype='IPv4', id='48aa686c-df23-49b3-b33d-82483da14e18', |
5534| | normalized_cidr='0.0.0.0/0', port_range_max='5668', port_range_min='5668', protocol='tcp', |
5535| | remote_ip_prefix='0.0.0.0/0', standard_attr_id='403', updated_at='2018-12-12T21:43:23Z' |
5536| | created_at='2018-12-13T01:14:51Z', direction='ingress', ethertype='IPv4', id='6a8a960c-b65c-47a2-b164-7979b7c88d57', |
5537| | normalized_cidr='0.0.0.0/0', port_range_max='5669', port_range_min='5669', protocol='tcp', |
5538| | remote_ip_prefix='0.0.0.0/0', standard_attr_id='407', updated_at='2018-12-13T01:14:51Z' |
5539| | created_at='2018-12-12T21:42:56Z', direction='egress', ethertype='IPv4', id='e7989786-8291-4688-91fe-df2e4b7c1e4c', |
5540| | standard_attr_id='398', updated_at='2018-12-12T21:42:56Z' |
5541| shared | False |
5542| stateful | True |
5543| tags | [] |
5544| updated_at | 2018-12-12T21:42:56Z |
5545+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5546wmcs-openstack security group delete eddabed8-474b-417e-af55-2ad3a30c03e2
5547sg: f1ccf385-d41b-4835-b59f-4c09a8ee2283 project: cloudinfra-codfw1dev
5548sg: f349f01b-0f5c-4865-8022-dfaee2dbf3e8 project: andrewtestproject
5549delete sg f349f01b-0f5c-4865-8022-dfaee2dbf3e8 because project andrewtestproject doesn't exists
5550+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5551| Field | Value |
5552+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5553| created_at | 2021-02-05T21:59:43Z |
5554| description | |
5555| id | f349f01b-0f5c-4865-8022-dfaee2dbf3e8 |
5556| name | ssh-from-anywhere |
5557| project_id | andrewtestproject |
5558| revision_number | 2 |
5559| rules | created_at='2021-02-05T21:59:43Z', direction='egress', ethertype='IPv6', id='57649a13-f6b6-42a7-bfe0-25f2ff20e69d', |
5560| | standard_attr_id='2749', updated_at='2021-02-05T21:59:43Z' |
5561| | created_at='2021-02-05T21:59:43Z', direction='egress', ethertype='IPv4', id='5f6fadf1-fd5c-4002-91ae-59c804e25429', |
5562| | standard_attr_id='2746', updated_at='2021-02-05T21:59:43Z' |
5563| | created_at='2021-02-05T21:59:56Z', direction='ingress', ethertype='IPv4', id='7da2fb7f-a573-4e1d-8222-96b0c2296e53', |
5564| | normalized_cidr='0.0.0.0/0', port_range_max='22', port_range_min='22', protocol='tcp', remote_ip_prefix='0.0.0.0/0', |
5565| | standard_attr_id='2752', updated_at='2021-02-05T21:59:56Z' |
5566| shared | False |
5567| stateful | True |
5568| tags | [] |
5569| updated_at | 2021-02-05T21:59:56Z |
5570+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5571wmcs-openstack security group delete f349f01b-0f5c-4865-8022-dfaee2dbf3e8
5572sg: f45c8a97-180d-496b-a740-8223c4b54f61 project: bastion
5573delete sg f45c8a97-180d-496b-a740-8223c4b54f61 because project bastion doesn't exists
5574+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5575| Field | Value |
5576+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5577| created_at | 2019-05-20T17:09:26Z |
5578| description | Default security group |
5579| id | f45c8a97-180d-496b-a740-8223c4b54f61 |
5580| name | default |
5581| project_id | bastion |
5582| revision_number | 0 |
5583| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:09:26Z', direction='ingress', ethertype='IPv4', id='bc5727cc- |
5584| | bce6-40f2-9db6-a9e248122dd7', remote_group_id='f45c8a97-180d-496b-a740-8223c4b54f61', standard_attr_id='431', |
5585| | updated_at='2019-05-20T17:09:26Z' |
5586| | belongs_to_default_sg='True', created_at='2019-05-20T17:09:26Z', direction='ingress', ethertype='IPv6', |
5587| | id='c6c5c1cc-40a8-4243-bf3b-b2cb6a3b2a8b', remote_group_id='f45c8a97-180d-496b-a740-8223c4b54f61', |
5588| | standard_attr_id='433', updated_at='2019-05-20T17:09:26Z' |
5589| | belongs_to_default_sg='True', created_at='2019-05-20T17:09:26Z', direction='egress', ethertype='IPv4', |
5590| | id='e9df14fd-d3fc-4a07-b585-2e86ce2c0980', standard_attr_id='432', updated_at='2019-05-20T17:09:26Z' |
5591| | belongs_to_default_sg='True', created_at='2019-05-20T17:09:26Z', direction='egress', ethertype='IPv6', |
5592| | id='ff758ce9-14a3-4646-b1f9-7622a665a555', standard_attr_id='434', updated_at='2019-05-20T17:09:26Z' |
5593| shared | False |
5594| stateful | True |
5595| tags | [] |
5596| updated_at | 2019-05-20T17:09:26Z |
5597+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5598wmcs-openstack security group delete f45c8a97-180d-496b-a740-8223c4b54f61
5599sg: f5f70e0d-e91c-4c7f-bacd-dc585505aad1 project: pawsdev
5600delete sg f5f70e0d-e91c-4c7f-bacd-dc585505aad1 because project pawsdev doesn't exists
5601+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5602| Field | Value |
5603+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5604| created_at | 2024-05-22T13:55:29Z |
5605| description | |
5606| id | f5f70e0d-e91c-4c7f-bacd-dc585505aad1 |
5607| name | paws-dev-126-1-7uvawokh3wmf-secgroup_kube_master-yiam4qxpynbf |
5608| project_id | pawsdev |
5609| revision_number | 15 |
5610| rules | created_at='2024-05-22T13:55:30Z', direction='ingress', ethertype='IPv4', id='08813c45-2ba8-44ac-abec-415a38eed79f', |
5611| | port_range_max='7080', port_range_min='7080', protocol='tcp', standard_attr_id='4904618', |
5612| | updated_at='2024-05-22T13:55:30Z' |
5613| | created_at='2024-05-22T13:55:31Z', direction='ingress', ethertype='IPv4', id='157c81a7-90e8-4e0b-92e0-270d75ac8b04', |
5614| | port_range_max='10250', port_range_min='10250', protocol='tcp', standard_attr_id='4904636', |
5615| | updated_at='2024-05-22T13:55:31Z' |
5616| | created_at='2024-05-22T13:55:29Z', direction='ingress', ethertype='IPv4', id='2a60582c-e33f-4e61-ba30-abed7a5d62e8', |
5617| | protocol='icmp', standard_attr_id='4904603', updated_at='2024-05-22T13:55:29Z' |
5618| | created_at='2024-05-22T13:55:29Z', direction='egress', ethertype='IPv4', id='2c048a52-3fda-4b3c-8379-9c9aa9fbfa3a', |
5619| | standard_attr_id='4904600', updated_at='2024-05-22T13:55:29Z' |
5620| | created_at='2024-05-22T13:55:30Z', direction='ingress', ethertype='IPv4', id='2ca98587-ac32-48ff-bdff-f85c4a8ffb81', |
5621| | port_range_max='2379', port_range_min='2379', protocol='tcp', standard_attr_id='4904624', |
5622| | updated_at='2024-05-22T13:55:30Z' |
5623| | created_at='2024-05-22T13:55:31Z', direction='ingress', ethertype='IPv4', id='305f684c-f780-4e40-a0cd-d8595453b9dd', |
5624| | port_range_max='9100', port_range_min='9100', protocol='tcp', standard_attr_id='4904633', |
5625| | updated_at='2024-05-22T13:55:31Z' |
5626| | created_at='2024-05-22T13:55:29Z', direction='ingress', ethertype='IPv4', id='67e43b99-f5a0-4d2c-a6fc-5ef46d851952', |
5627| | port_range_max='53', port_range_min='53', protocol='tcp', standard_attr_id='4904609', updated_at='2024-05-22T13:55:29Z' |
5628| | created_at='2024-05-22T13:55:29Z', direction='ingress', ethertype='IPv4', id='7cffaf51-a466-43b8-9117-e5d28c878164', |
5629| | port_range_max='22', port_range_min='22', protocol='tcp', standard_attr_id='4904606', updated_at='2024-05-22T13:55:29Z' |
5630| | created_at='2024-05-22T13:55:31Z', direction='ingress', ethertype='IPv4', id='7fc76517-3080-43d7-b947-7ea0a0009331', |
5631| | port_range_max='32767', port_range_min='30000', protocol='tcp', standard_attr_id='4904639', |
5632| | updated_at='2024-05-22T13:55:31Z' |
5633| | created_at='2024-05-22T13:55:30Z', direction='ingress', ethertype='IPv4', id='9127190d-fa7f-46a1-b828-8c101b1d9a35', |
5634| | port_range_max='8080', port_range_min='8080', protocol='tcp', standard_attr_id='4904621', |
5635| | updated_at='2024-05-22T13:55:30Z' |
5636| | created_at='2024-05-22T13:55:29Z', direction='ingress', ethertype='IPv4', id='970eb8d5-0831-4c88-a79d-4d936ba9da5c', |
5637| | port_range_max='53', port_range_min='53', protocol='udp', standard_attr_id='4904612', updated_at='2024-05-22T13:55:29Z' |
5638| | created_at='2024-05-22T13:55:31Z', direction='ingress', ethertype='IPv4', id='9e6700ff-b4fb-4ede-853f-6a22d9233643', |
5639| | port_range_max='8472', port_range_min='8472', protocol='udp', standard_attr_id='4904642', |
5640| | updated_at='2024-05-22T13:55:31Z' |
5641| | created_at='2024-05-22T13:55:30Z', direction='ingress', ethertype='IPv4', id='b251c5a9-f9b5-4478-b435-a94542eebd33', |
5642| | port_range_max='2380', port_range_min='2380', protocol='tcp', standard_attr_id='4904627', |
5643| | updated_at='2024-05-22T13:55:30Z' |
5644| | created_at='2024-05-22T13:55:29Z', direction='egress', ethertype='IPv6', id='c34bbef9-387f-4d1a-a625-cd226dc47037', |
5645| | standard_attr_id='4904597', updated_at='2024-05-22T13:55:29Z' |
5646| | created_at='2024-05-22T13:55:30Z', direction='ingress', ethertype='IPv4', id='cc54d1a7-b86a-450c-88a7-2a09aee3bfe4', |
5647| | port_range_max='179', port_range_min='179', protocol='tcp', standard_attr_id='4904615', |
5648| | updated_at='2024-05-22T13:55:30Z' |
5649| | created_at='2024-05-22T13:55:30Z', direction='ingress', ethertype='IPv4', id='ff63ccd1-953e-440e-b2f0-4e184b5476b7', |
5650| | port_range_max='6443', port_range_min='6443', protocol='tcp', standard_attr_id='4904630', |
5651| | updated_at='2024-05-22T13:55:30Z' |
5652| shared | False |
5653| stateful | True |
5654| tags | [] |
5655| updated_at | 2024-05-22T13:55:31Z |
5656+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5657wmcs-openstack security group delete f5f70e0d-e91c-4c7f-bacd-dc585505aad1
5658sg: f78ab0f4-4b11-4261-8d4d-5393836e1bbb project: devproject14
5659delete sg f78ab0f4-4b11-4261-8d4d-5393836e1bbb because project devproject14 doesn't exists
5660+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5661| Field | Value |
5662+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5663| created_at | 2019-05-20T17:09:41Z |
5664| description | Default security group |
5665| id | f78ab0f4-4b11-4261-8d4d-5393836e1bbb |
5666| name | default |
5667| project_id | devproject14 |
5668| revision_number | 0 |
5669| rules | belongs_to_default_sg='True', created_at='2019-05-20T17:09:41Z', direction='egress', ethertype='IPv6', |
5670| | id='5fc14486-a41b-4f96-b057-3cd04e8f6249', standard_attr_id='439', updated_at='2019-05-20T17:09:41Z' |
5671| | belongs_to_default_sg='True', created_at='2019-05-20T17:09:41Z', direction='ingress', ethertype='IPv4', |
5672| | id='8451de75-a383-4b2f-941b-7fab73e154e6', remote_group_id='f78ab0f4-4b11-4261-8d4d-5393836e1bbb', |
5673| | standard_attr_id='436', updated_at='2019-05-20T17:09:41Z' |
5674| | belongs_to_default_sg='True', created_at='2019-05-20T17:09:41Z', direction='egress', ethertype='IPv4', |
5675| | id='9f9af5c9-d3be-404a-b2e0-c855268829ec', standard_attr_id='437', updated_at='2019-05-20T17:09:41Z' |
5676| | belongs_to_default_sg='True', created_at='2019-05-20T17:09:41Z', direction='ingress', ethertype='IPv6', |
5677| | id='e39ece8b-60b9-4d82-9d81-cdf2164987b6', remote_group_id='f78ab0f4-4b11-4261-8d4d-5393836e1bbb', |
5678| | standard_attr_id='438', updated_at='2019-05-20T17:09:41Z' |
5679| shared | False |
5680| stateful | True |
5681| tags | [] |
5682| updated_at | 2019-05-20T17:09:41Z |
5683+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5684wmcs-openstack security group delete f78ab0f4-4b11-4261-8d4d-5393836e1bbb
5685sg: f7e91219-fd64-482e-8428-98a29d07ea43 project: k8s-dev
5686delete sg f7e91219-fd64-482e-8428-98a29d07ea43 because project k8s-dev doesn't exists
5687+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5688| Field | Value |
5689+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5690| created_at | 2023-02-14T16:40:48Z |
5691| description | Default security group |
5692| id | f7e91219-fd64-482e-8428-98a29d07ea43 |
5693| name | default |
5694| project_id | k8s-dev |
5695| revision_number | 8 |
5696| rules | belongs_to_default_sg='True', created_at='2023-02-14T16:40:48Z', direction='ingress', ethertype='IPv4', |
5697| | id='003d14c1-d365-4ce6-b8a2-65edaba6b920', remote_group_id='f7e91219-fd64-482e-8428-98a29d07ea43', |
5698| | standard_attr_id='4742331', updated_at='2023-02-14T16:40:48Z' |
5699| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:49Z', direction='ingress', ethertype='IPv4', |
5700| | id='55693619-38df-46d1-ac6c-2b00e52e14bb', port_range_max='22', port_range_min='22', protocol='tcp', |
5701| | remote_group_id='f7e91219-fd64-482e-8428-98a29d07ea43', standard_attr_id='4742349', updated_at='2023-02-14T16:40:49Z' |
5702| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:49Z', direction='ingress', ethertype='IPv4', |
5703| | id='5c7dcd78-18a0-4d50-bfb1-a14f94252b8c', protocol='udp', remote_group_id='f7e91219-fd64-482e-8428-98a29d07ea43', |
5704| | standard_attr_id='4742352', updated_at='2023-02-14T16:40:49Z' |
5705| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:48Z', direction='ingress', ethertype='IPv4', |
5706| | id='68f7e4c5-ced3-42fe-9517-e132864f15d0', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5707| | standard_attr_id='4742343', updated_at='2023-02-14T16:40:48Z' |
5708| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:48Z', direction='egress', ethertype='IPv4', |
5709| | id='8389b0af-86c3-4e3f-8b90-ed5b3c774f6a', standard_attr_id='4742334', updated_at='2023-02-14T16:40:48Z' |
5710| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:48Z', direction='egress', ethertype='IPv6', |
5711| | id='8b5f2069-8c0e-425d-9aaf-14513827bb8b', standard_attr_id='4742340', updated_at='2023-02-14T16:40:48Z' |
5712| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:48Z', direction='ingress', ethertype='IPv4', |
5713| | id='9978d93c-5838-48a5-8983-f47bb6950a1c', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5714| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4742346', updated_at='2023-02-14T16:40:48Z' |
5715| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:49Z', direction='ingress', ethertype='IPv4', |
5716| | id='ceb1ca2c-81b4-44e8-870c-03942117060a', protocol='icmp', remote_group_id='f7e91219-fd64-482e-8428-98a29d07ea43', |
5717| | standard_attr_id='4742355', updated_at='2023-02-14T16:40:49Z' |
5718| | belongs_to_default_sg='True', created_at='2023-02-14T16:40:48Z', direction='ingress', ethertype='IPv6', |
5719| | id='d7cb2d7f-a0c6-4295-b8d4-cce0c16c06bc', remote_group_id='f7e91219-fd64-482e-8428-98a29d07ea43', |
5720| | standard_attr_id='4742337', updated_at='2023-02-14T16:40:48Z' |
5721| shared | False |
5722| stateful | True |
5723| tags | [] |
5724| updated_at | 2024-06-26T18:28:22Z |
5725+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5726wmcs-openstack security group delete f7e91219-fd64-482e-8428-98a29d07ea43
5727sg: f985e856-c7cf-4bd1-a9a5-268fae907504 project: victoriatest1
5728delete sg f985e856-c7cf-4bd1-a9a5-268fae907504 because project victoriatest1 doesn't exists
5729+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5730| Field | Value |
5731+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5732| created_at | 2021-04-13T18:16:20Z |
5733| description | Default security group |
5734| id | f985e856-c7cf-4bd1-a9a5-268fae907504 |
5735| name | default |
5736| project_id | victoriatest1 |
5737| revision_number | 6 |
5738| rules | belongs_to_default_sg='True', created_at='2021-04-13T18:16:21Z', direction='ingress', ethertype='IPv4', |
5739| | id='135479eb-2319-4c78-988f-37a1559a7012', protocol='udp', remote_group_id='f985e856-c7cf-4bd1-a9a5-268fae907504', |
5740| | standard_attr_id='4701', updated_at='2021-04-13T18:16:21Z' |
5741| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:21Z', direction='egress', ethertype='IPv4', |
5742| | id='2389ab18-aa23-4da9-8ddb-a90bdf3cd237', standard_attr_id='4683', updated_at='2021-04-13T18:16:21Z' |
5743| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:21Z', direction='ingress', ethertype='IPv6', |
5744| | id='325f93c9-279e-4511-94ca-7c59b4b7b6f1', remote_group_id='f985e856-c7cf-4bd1-a9a5-268fae907504', |
5745| | standard_attr_id='4686', updated_at='2021-04-13T18:16:21Z' |
5746| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:20Z', direction='ingress', ethertype='IPv4', |
5747| | id='3b5b8563-9e64-4a59-9b6b-686c6b73e0d4', remote_group_id='f985e856-c7cf-4bd1-a9a5-268fae907504', |
5748| | standard_attr_id='4680', updated_at='2021-04-13T18:16:20Z' |
5749| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:21Z', direction='ingress', ethertype='IPv4', |
5750| | id='588ce6a5-5647-4c5c-a9bf-8f7ea6c1de85', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5751| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='4695', updated_at='2021-04-13T18:16:21Z' |
5752| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:22Z', direction='ingress', ethertype='IPv4', |
5753| | id='9a6c5a21-ffa2-425d-a7ca-a310d997c3db', protocol='icmp', remote_group_id='f985e856-c7cf-4bd1-a9a5-268fae907504', |
5754| | standard_attr_id='4704', updated_at='2021-04-13T18:16:22Z' |
5755| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:21Z', direction='ingress', ethertype='IPv4', |
5756| | id='a2857d6d-ab83-4bc8-bb3f-c872bba22814', port_range_max='22', port_range_min='22', protocol='tcp', |
5757| | remote_group_id='f985e856-c7cf-4bd1-a9a5-268fae907504', standard_attr_id='4698', updated_at='2021-04-13T18:16:21Z' |
5758| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:21Z', direction='egress', ethertype='IPv6', |
5759| | id='b24f1f2b-cb53-4341-8f03-285b9067e85c', standard_attr_id='4689', updated_at='2021-04-13T18:16:21Z' |
5760| | belongs_to_default_sg='True', created_at='2021-04-13T18:16:21Z', direction='ingress', ethertype='IPv4', |
5761| | id='eb4a4583-f3b4-48bd-b401-22ce143d5037', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5762| | standard_attr_id='4692', updated_at='2021-04-13T18:16:21Z' |
5763| shared | False |
5764| stateful | True |
5765| tags | [] |
5766| updated_at | 2021-04-13T18:16:22Z |
5767+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5768wmcs-openstack security group delete f985e856-c7cf-4bd1-a9a5-268fae907504
5769sg: f9b2fbea-5646-4fe0-b2f9-00788d8f6b77 project: trove
5770sg: fa9b592e-209d-44b4-8f72-e583b60da228 project: trove
5771sg: fc67911e-3b31-430a-bb99-cbd729326223 project: createtest6
5772delete sg fc67911e-3b31-430a-bb99-cbd729326223 because project createtest6 doesn't exists
5773+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5774| Field | Value |
5775+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5776| created_at | 2021-01-30T03:21:23Z |
5777| description | Default security group |
5778| id | fc67911e-3b31-430a-bb99-cbd729326223 |
5779| name | default |
5780| project_id | createtest6 |
5781| revision_number | 6 |
5782| rules | belongs_to_default_sg='True', created_at='2021-01-30T03:21:23Z', direction='egress', ethertype='IPv4', |
5783| | id='041d648b-ceb1-4cb1-b22e-7859106e97b5', standard_attr_id='2701', updated_at='2021-01-30T03:21:23Z' |
5784| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:23Z', direction='ingress', ethertype='IPv4', |
5785| | id='0c873f7c-1efd-4392-9ff4-22b70527fd83', normalized_cidr='0.0.0.0/0', protocol='icmp', remote_ip_prefix='0.0.0.0/0', |
5786| | standard_attr_id='2710', updated_at='2021-01-30T03:21:23Z' |
5787| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:24Z', direction='ingress', ethertype='IPv4', |
5788| | id='1da038d7-6a6c-4f41-80d0-21319d0e75bb', protocol='icmp', remote_group_id='fc67911e-3b31-430a-bb99-cbd729326223', |
5789| | standard_attr_id='2722', updated_at='2021-01-30T03:21:24Z' |
5790| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:23Z', direction='egress', ethertype='IPv6', |
5791| | id='60b1214e-45a7-40c1-845b-027531a10edf', standard_attr_id='2707', updated_at='2021-01-30T03:21:23Z' |
5792| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:23Z', direction='ingress', ethertype='IPv4', |
5793| | id='924d2314-5b78-4ee6-96ea-847d6dcf8474', remote_group_id='fc67911e-3b31-430a-bb99-cbd729326223', |
5794| | standard_attr_id='2698', updated_at='2021-01-30T03:21:23Z' |
5795| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:24Z', direction='ingress', ethertype='IPv4', |
5796| | id='ae64fb08-d13a-492d-8ce6-aefb9690b81a', port_range_max='65535', port_range_min='1', protocol='udp', |
5797| | remote_group_id='fc67911e-3b31-430a-bb99-cbd729326223', standard_attr_id='2719', updated_at='2021-01-30T03:21:24Z' |
5798| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:23Z', direction='ingress', ethertype='IPv4', |
5799| | id='b6189569-ab4f-4a41-91e1-88ab3b022819', port_range_max='22', port_range_min='22', protocol='tcp', |
5800| | remote_group_id='fc67911e-3b31-430a-bb99-cbd729326223', standard_attr_id='2716', updated_at='2021-01-30T03:21:23Z' |
5801| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:23Z', direction='ingress', ethertype='IPv4', |
5802| | id='d70b6bb8-1228-42e0-b0fe-7f161dd8b6a8', normalized_cidr='172.16.128.0/24', port_range_max='22', port_range_min='22', |
5803| | protocol='tcp', remote_ip_prefix='172.16.128.0/24', standard_attr_id='2713', updated_at='2021-01-30T03:21:23Z' |
5804| | belongs_to_default_sg='True', created_at='2021-01-30T03:21:23Z', direction='ingress', ethertype='IPv6', id='e37761cf- |
5805| | adde-46b5-b357-5a45192bd7dd', remote_group_id='fc67911e-3b31-430a-bb99-cbd729326223', standard_attr_id='2704', |
5806| | updated_at='2021-01-30T03:21:23Z' |
5807| shared | False |
5808| stateful | True |
5809| tags | [] |
5810| updated_at | 2021-01-30T03:21:24Z |
5811+-----------------+-------------------------------------------------------------------------------------------------------------------------+
5812wmcs-openstack security group delete fc67911e-3b31-430a-bb99-cbd729326223

Mentioned in SAL (#wikimedia-cloud) [2024-09-25T10:33:49Z] <arturo> [codfw1dev] cleanup unused security groups (T375604)