turbot/azure_compliance

Query: compute_vm_guest_configuration_installed_linux

Usage

powerpipe query azure_compliance.query.compute_vm_guest_configuration_installed_linux

SQL

with agent_installed_vm as (
select
distinct a.vm_id
from
azure_compute_virtual_machine as a,
jsonb_array_elements(extensions) as b
where
b ->> 'Publisher' = 'Microsoft.GuestConfiguration'
and b ->> 'ProvisioningState' = 'Succeeded'
and b ->> 'ExtensionType' = 'ConfigurationforLinux'
and b ->> 'Name' like '%AzurePolicyforLinux'
)
select
a.vm_id as resource,
case
when a.os_type <> 'Linux' then 'skip'
when b.vm_id is not null then 'ok'
else 'alarm'
end as status,
case
when a.os_type <> 'Linux' then a.title || ' is of ' || a.os_type || ' operating system.'
when b.vm_id is not null then a.title || ' have guest configuration extension installed.'
else a.title || ' guest configuration extension not installed.'
end as reason,
a.resource_group as resource_group,
sub.display_name as subscription
from
azure_compute_virtual_machine as a
left join agent_installed_vm as b on a.vm_id = b.vm_id,
azure_subscription as sub
where
sub.subscription_id = a.subscription_id;

Controls

The query is being used by the following controls: