From 89f3f3cdd4cd71e00b2d3f97673f5ed89b18baa0 Mon Sep 17 00:00:00 2001 From: Sebastian Rieger Date: Thu, 28 May 2020 11:50:36 +0200 Subject: [PATCH] removed unneeded vpc_id --- .../aws-boto3-standalone-db/stop.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/example-projects/tug-of-war-in-the-clouds/aws-boto3-standalone-db/stop.py b/example-projects/tug-of-war-in-the-clouds/aws-boto3-standalone-db/stop.py index 3fe5d5e..233da15 100644 --- a/example-projects/tug-of-war-in-the-clouds/aws-boto3-standalone-db/stop.py +++ b/example-projects/tug-of-war-in-the-clouds/aws-boto3-standalone-db/stop.py @@ -11,12 +11,6 @@ from botocore.exceptions import ClientError region = 'eu-central-1' -vpc_id = 'vpc-eedd4187' - -# if you only have one VPC, vpc_id can be retrieved using: -# -# response = ec2Client.describe_vpcs() -# vpc_id = response.get('Vpcs', [{}])[0].get('VpcId', '') ################################################################################################