Show More
@@ -505,6 +505,10 b" def remove_resources(c, prefix='hg-'):" | |||
|
505 | 505 | |
|
506 | 506 | for role in iamresource.roles.all(): |
|
507 | 507 | if role.name.startswith(prefix): |
|
508 | for p in role.attached_policies.all(): | |
|
509 | print('detaching policy %s from %s' % (p.arn, role.name)) | |
|
510 | role.detach_policy(PolicyArn=p.arn) | |
|
511 | ||
|
508 | 512 | print('removing role %s' % role.name) |
|
509 | 513 | role.delete() |
|
510 | 514 |
General Comments 0
You need to be logged in to leave comments.
Login now