Loading controls...
Control: Key vault managed hardware security modules should not exceed tag limit
Description
Check if the number of tags on Key vault managed hardware security modules do not exceed the limit.
Usage
Run the control in your terminal:
steampipe check azure_tags.control.key_vault_managed_hardware_security_module_tag_limit
Snapshot and share results via Steampipe Cloud:
steampipe loginsteampipe check --share azure_tags.control.key_vault_managed_hardware_security_module_tag_limit
Plugins & Tables
Params
Args | Name | Default | Description | Variable |
---|---|---|---|---|
$1 | tag_limit |
|
SQL
with analysis as ( select id, title, cardinality( array( select jsonb_object_keys(tags) ) ) as num_tag_keys, resource_group, subscription_id from azure_key_vault_managed_hardware_security_module)select id as resource, case when num_tag_keys > $1 :: integer then 'alarm' else 'ok' end as status, title || ' has ' || num_tag_keys || ' tag(s).' as reason, resource_group, subscription_idfrom analysis;