From b37f82c3187e1c255f8afd6de61338be66f9bf99 Mon Sep 17 00:00:00 2001 From: dzikafoczka Date: Sat, 21 Dec 2024 10:29:41 +0100 Subject: [PATCH] autoscaling --- autoscaling.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoscaling.py b/autoscaling.py index 70df31c..1b637ca 100644 --- a/autoscaling.py +++ b/autoscaling.py @@ -304,7 +304,7 @@ def create_cloudwatch_alarms(cloudwatch_client, sp): Unit='Percent' ) - print(f"Scale alarm created with ARN: {response['AlarmArn']}") + print(f"Scale-up alarm created") # Scale-down alarm response = cloudwatch_client.put_metric_alarm( @@ -326,7 +326,7 @@ def create_cloudwatch_alarms(cloudwatch_client, sp): Unit='Percent' ) - print(f"Scale-down alarm created with ARN: {response['AlarmArn']}") + print(f"Scale-down alarm created") # Main function def main():