Adds token cleanup to bigip irules (#34203)

Token cleanup helps keep the bigip from getting wedged
pull/34205/head
Tim Rupp 7 years ago committed by GitHub
parent 5bd8a8f491
commit 554ffd70f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -403,24 +403,36 @@ class ArgumentSpec(object):
self.f5_product_name = 'bigip'
def main():
if not HAS_F5SDK:
raise F5ModuleError("The python f5-sdk module is required")
def cleanup_tokens(client):
try:
resource = client.api.shared.authz.tokens_s.token.load(
name=client.api.icrs.token
)
resource.delete()
except Exception:
pass
def main():
spec = ArgumentSpec()
client = AnsibleF5Client(
argument_spec=spec.argument_spec,
mutually_exclusive=spec.mutually_exclusive,
supports_check_mode=spec.supports_check_mode,
f5_product_name=spec.f5_product_name
f5_product_name=spec.f5_product_name,
mutually_exclusive=spec.mutually_exclusive,
)
try:
if not HAS_F5SDK:
raise F5ModuleError("The python f5-sdk module is required")
mm = ModuleManager(client)
results = mm.exec_module()
cleanup_tokens(client)
client.module.exit_json(**results)
except F5ModuleError as e:
cleanup_tokens(client)
client.module.fail_json(msg=str(e))

Loading…
Cancel
Save