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

Add storage_info_value column to azure_app_service_web_app table closes #646 #657

Closed misraved closed 1 year ago

misraved commented 1 year ago

Integration test logs

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

Example query results

Results ```sql > select storage_info_value from azure_app_service_web_app [ { "storage_info_value": { "properties": { "storage-mount-info": { "accessKey": "I01jGbfjfoP7wg3Y6V+bXCWQUlpfqlW0Z1111111NrFOqLndq+VTyIwacIJJ1X2XXqwVbDfMZKs3LBjFtCIMlcFQ==", "accountName": "testimmutablecontainer", "mountPath": "/H", "shareName": "container-m", "type": "AzureBlob" } } } } ] ``` ```sql > select name, storage_info_value from azure_app_service_web_app where resource_group = 'demo' and name = 'web-app-test-storage-info' [ { "name": "web-app-test-storage-info", "storage_info_value": { "properties": { "storage-mount-info": { "accessKey": "I01jGbfjfoP7wg3Y6V+bXCWQUlpf1101010111qNrFOqLndq+VTyIwacIJJ1X2XXqwVbDfMZKs3LBjFtCIMlcFQ==", "accountName": "testimmutablecontainer", "mountPath": "/H", "shareName": "container-m", "type": "AzureBlob" } } } } ] ```