turbot/steampipe-mod-aws-insights

Dashboard: AWS EC2 Application Load Balancer Detail

This dashboard answers the following questions:

  • How is the load balancer configured?
  • What tags are applied?
  • Which security groups is it attached to?
  • What relationships does the load balancer have with other resources?
This dashboard contains 6 cards, 1 graph, 1 input and 3 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-aws-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select AWS EC2 Application Load Balancer Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run aws_insights.dashboard.ec2_application_load_balancer_detail --share

Queries

This dashboard uses the the following queries:
select
lb ->> 'Key' as "Key",
lb ->> 'Value' as "Value"
from
aws_ec2_application_load_balancer
cross join jsonb_array_elements(load_balancer_attributes) as lb
where
aws_ec2_application_load_balancer.arn = $1
and lb ->> 'Key' not in ( 'deletion_protection.enabled' ,'access_logs.s3.enabled' )
order by
lb ->> 'Key';

Tags