File tree Expand file tree Collapse file tree
python/example_code/auto-scaling/hello Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ def hello_autoscaling(autoscaling_client):
1515 :param autoscaling_client: A Boto3 Amazon EC2 Auto Scaling client object.
1616 """
1717 print (
18- "Hello, Amazon EC2 Auto Scaling! Let's list up to ten of you Auto Scaling groups:"
18+ "Hello, Amazon EC2 Auto Scaling! Let's list up to ten of you Auto Scaling groups: 🚀 "
1919 )
2020 response = autoscaling_client .describe_auto_scaling_groups ()
2121 groups = response .get ("AutoScalingGroups" , [])
2222 if groups :
2323 for group in groups :
24- print (f"\t { group ['AutoScalingGroupName' ]} : { group ['AvailabilityZones' ]} " )
24+ print (f"\t ✅ { group ['AutoScalingGroupName' ]} : { group ['AvailabilityZones' ]} " )
2525 else :
26- print ("There are no Auto Scaling groups in your account." )
26+ print ("❌ There are no Auto Scaling groups in your account." )
2727
2828
2929if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments