Hi everyone.
I've been working on an ansible playbook that retrieves SSL and Certificate data from a load balancer. I've been able to run the
playbook with success however, I'm not getting all the expected data. Below is a sample of my playbook:
gather_facts: false
hosts: local
vars:
env: dev
tasks:
name: Get SSL Cert Info
avi_api_session
controller:
tenant:
timeout: 1000
path: sslkeyandcertificate
http_method: get
username:
register: json
debug: var=json
The data needed is about 10-12 pages. I'm only getting back a full page of data (if that). My goal is to pull back all the remaining pages. At this point, I'm not sure how to do that.
What have I tried? I've altered my script several different times and have created several variations of it. It either didn't work or it worked but did not produce the intended output.
Any help at this point would be greatly appreciated it. Thanks.