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

Update incorrect Column Type for Network Access Fields in azure_application_insight Table. Closes #768 #769

Closed Priyanka-Chatterjee-2000 closed 4 months ago

Priyanka-Chatterjee-2000 commented 4 months ago

Results

Results ``` When it was json column:- select public_network_access_for_ingestion,public_network_access_for_query from azure_application_insight +-------------------------------------+---------------------------------+ | public_network_access_for_ingestion | public_network_access_for_query | +-------------------------------------+---------------------------------+ | "Enabled" | "Enabled" | +-------------------------------------+---------------------------------+ After changing the column type to string:- select public_network_access_for_ingestion,public_network_access_for_query from azure_application_insight +-------------------------------------+---------------------------------+ | public_network_access_for_ingestion | public_network_access_for_query | +-------------------------------------+---------------------------------+ | Enabled | Enabled | +-------------------------------------+---------------------------------+ ```
misraved commented 4 months ago

@Priyanka-Chatterjee-2000 could you please add the queries in the PR body reflecting the two columns that have been updated? Thanks!!