project cleanup does not resolve ports with security groups
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| python-openstackclient |
New
|
Undecided
|
Alexey Stupnikov | ||
Bug Description
The project cleanup command is unable to delete Ports/security groups with security groups/ports still attached to them, and it does not resolve this situation properly
Environment:
- python-
Steps to Reproduce:
The following terraform configuration deploys three resources:
- a network
- a port
- a security group, linked to said port
```terraform
resource "openstack_
name = "secgroup_1"
description = "My neutron security group"
}
resource "openstack_
name = "network_1"
admin_state_up = "true"
}
resource "openstack_
name = "port_1"
network_id = openstack_
admin_state_up = true
security_
}
```
When trying to remove these resources it fails to do so, with the following error:
openstack.
Expected Behavior:
Ressources should be removed
Actual Behavior:
Security groups are not successfully remove when attached to a port.
| Changed in python-openstackclient: | |
| assignee: | nobody → Alexey Stupnikov (astupnikov) |
This is essentially the same behavior as described here: /storyboard. openstack. org/#!/ story/2010316
https:/