See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
#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 |
{ | |
"policy": { | |
"description": "Delete index after 8D.", | |
"default_state": "hot", | |
"states": [ | |
{ | |
"name": "hot", | |
"actions": [{ | |
"replica_count": { | |
"number_of_replicas": 3 |
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs