mirror of
https://github.com/alexpasmantier/television.git
synced 2025-07-29 06:11:37 +00:00
14 lines
415 B
TOML
14 lines
415 B
TOML
[metadata]
|
|
name = "aws-instances"
|
|
description = "List and preview AWS EC2 Instances"
|
|
requirements = ["aws"]
|
|
|
|
[source]
|
|
command = "aws ec2 describe-instances --output text --query \"Reservations[*].Instances[*].[InstanceId,Tags[?Key=='Name']|[0].Value]\""
|
|
|
|
[preview]
|
|
command = "aws ec2 describe-instances --output json --instance-ids {split:\t:0} --query 'Reservations[*].Instances[0]'"
|
|
|
|
[ui.preview_panel]
|
|
size = 60
|