Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WAFV2 API list_web_acls always returns NextMarker #3715

Closed
aMfM9E2 opened this issue May 18, 2023 · 0 comments
Closed

WAFV2 API list_web_acls always returns NextMarker #3715

aMfM9E2 opened this issue May 18, 2023 · 0 comments
Labels
bug This issue is a confirmed bug. needs-triage This issue or PR still needs to be triaged.

Comments

@aMfM9E2
Copy link

aMfM9E2 commented May 18, 2023

Describe the bug

WAFV2 API list_web_acls always returns NextMarker

Expected Behavior

trying to discover WAF config though lambda

Current Behavior

WAFV2 API list_web_acls always returns NextMarker

Reproduction Steps

web_acls = []
response = session.client('wafv2').list_web_acls(Scope='REGIONAL')
web_acls.extend(response['WebACLs'])
while 'NextMarker' in response:
response = session.client('wafv2').list_web_acls(Scope='REGIONAL', NextMarker=response['NextMarker'])
web_acls.extend(response['WebACLs'])

Possible Solution

No response

Additional Information/Context

No response

SDK version used

latest

Environment details (OS name and version, etc.)

lambda python 3.9

@aMfM9E2 aMfM9E2 added bug This issue is a confirmed bug. needs-triage This issue or PR still needs to be triaged. labels May 18, 2023
@aMfM9E2 aMfM9E2 closed this as completed May 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue is a confirmed bug. needs-triage This issue or PR still needs to be triaged.
Projects
None yet
Development

No branches or pull requests

1 participant