This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #List ECS Clusters by Name | |
| aws ecs list-clusters --region <region> | jq -r '.clusterArns[]' | cut -d/ -f2 | |
| #List ECS List ServiceNames by Cluster | |
| aws ecs list-services --cluster <cluster-name> --region sa-east-1 | jq -r '.serviceArns[]' | cut -d/ -f3 | |
| #List EventBridge Event Buses | |
| aws events list-event-buses --region <region> | jq -r '.EventBuses[].Name' | |
| #List EventBridge Rules |