We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb92d5 commit f45e72dCopy full SHA for f45e72d
krkn/scenario_plugins/zone_outage/zone_outage_scenario_plugin.py
@@ -64,9 +64,14 @@ def run(
64
# Use provided default ACL if available, otherwise create a new one
65
if default_acl_id:
66
acl_id = default_acl_id
67
- # Don't add to acl_id since we didn't create it
+ logging.info(
68
+ "Using provided default ACL ID %s - this ACL will not be deleted after the scenario",
69
+ default_acl_id
70
+ )
71
+ # Don't add to acl_ids_created since we don't want to delete user-provided ACLs at cleanup
72
else:
73
acl_id = cloud_object.create_default_network_acl(vpc_id)
74
+ logging.info("Created new default ACL %s", acl_id)
75
acl_ids_created.append(acl_id)
76
77
new_association_id = cloud_object.replace_network_acl_association(
0 commit comments