From 259afec126e7e9d9f80a3d9e79cbcd22e00b5d2f Mon Sep 17 00:00:00 2001
From: Sebastian Rieger <sebastian.rieger@informatik.hs-fulda.de>
Date: Thu, 13 Jun 2024 13:02:55 +0200
Subject: [PATCH] updated rds instance type, as t2 does not seam to be
 available anymore, though still in the pricing list

---
 .../tug-of-war-in-the-clouds/aws-boto3-rds-db/start.py          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/example-projects/tug-of-war-in-the-clouds/aws-boto3-rds-db/start.py b/example-projects/tug-of-war-in-the-clouds/aws-boto3-rds-db/start.py
index dc07938..c2c6fcd 100644
--- a/example-projects/tug-of-war-in-the-clouds/aws-boto3-rds-db/start.py
+++ b/example-projects/tug-of-war-in-the-clouds/aws-boto3-rds-db/start.py
@@ -163,7 +163,7 @@ response = rdsClient.create_db_instance(DBInstanceIdentifier="tug-of-war-rds-db1
     VpcSecurityGroupIds=[security_group_id],
     # DBInstanceClass='db.m3.2xlarge',
     # DBInstanceClass='db.t3.micro',
-    DBInstanceClass='db.t2.small',
+    DBInstanceClass='db.t3.small',
     Tags=[
         {'Key': 'Name', 'Value': 'tug-of-war-rds-db1'},
         {'Key': 'tug-of-war-rds', 'Value': 'db'}
-- 
GitLab