mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
13 lines
349 B
Plaintext
13 lines
349 B
Plaintext
```sh
|
|
# Get the IDs of running nginx instances in 'dev'.
|
|
aws ec2 describe-instances --output 'text' \
|
|
--filters \
|
|
'Name=instance-state-name,Values=running' \
|
|
'Name=tag:env,Values=dev' \
|
|
'Name=tag:app,Values=nginx' \
|
|
--query 'Reservations[].Instances[].InstanceId[]'
|
|
```
|
|
|
|
https://instances.vantage.sh/
|
|
https://ec2instances.github.io/
|