turbot / steampipe-plugin-azure

Use SQL to instantly query Azure resources across regions and subscriptions. Open source CLI. No DB required.
https://hub.steampipe.io/plugins/turbot/azure
Apache License 2.0
37 stars 17 forks source link

Fixed missing web_application_firewall_configuration details in table azure_application_gateway Closes #765 #770

Closed ParthaI closed 3 months ago

ParthaI commented 4 months ago

Integration test logs

Logs ``` Add passing integration test logs here ```

Example query results

Results ``` > select name, jsonb_pretty(web_application_firewall_configuration) from azure_application_gateway; +----------+----------------------------------------------------------------------------------------------------------------------------------------------------------+ | name | jsonb_pretty | +----------+----------------------------------------------------------------------------------------------------------------------------------------------------------+ | test2223 | | | testgw3 | { | | | "CustomRules": [ | | | ], | | | "ManagedRules": { | | | "exclusions": [ | | | ], | | | "managedRuleSets": [ | | | { | | | "ruleSetType": "OWASP", | | | "ruleSetVersion": "3.2", | | | "ruleGroupOverrides": [ | | | ] | | | } | | | ] | | | }, | | | "HTTPListeners": null, | | | "ResourceState": null, | | | "PathBasedRules": null, | | | "PolicySettings": { | | | "mode": "Detection", | | | "state": "Disabled", | | | "requestBodyCheck": true, | | | "fileUploadLimitInMb": 100, | | | "maxRequestBodySizeInKb": 128 | | | }, | | | "ProvisioningState": "Succeeded", | | | "ApplicationGateways": [ | | | { | | | "id": "/subscriptions/************************************/resourceGroups/turbot_rg/providers/Microsoft.Network/applicationGateways/testgw3" | | | } | | | ] | | | } | +----------+----------------------------------------------------------------------------------------------------------------------------------------------------------+ ```