Control: Disks should be resized if too large
Description
Large disks are unusual, expensive and should be reviewed.
Usage
Run the control in your terminal:
powerpipe control run azure_thrifty.control.compute_disk_large
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_thrifty.control.compute_disk_large --share
Steampipe Tables
Params
Args | Name | Default | Description | Variable |
---|---|---|---|---|
$1 | compute_disk_max_size_gb |
| The maximum size (GB) allowed for disks. |
SQL
select disk.unique_id as resource, case when disk_size_gb <= $1 then 'ok' else 'alarm' end as status, disk.title || ' is ' || disk_size_gb || ' GB.' as reason , disk.resource_group , display_name as subscriptionfrom azure_compute_disk as disk, azure_subscription as subwhere sub.subscription_id = disk.subscription_id;