diff --git a/example-projects/turnserver/aws-boto3/start.py b/example-projects/turnserver/aws-boto3/start.py index 151abce..02f0186 100644 --- a/example-projects/turnserver/aws-boto3/start.py +++ b/example-projects/turnserver/aws-boto3/start.py @@ -1,6 +1,7 @@ import boto3 from botocore.exceptions import ClientError + region = 'eu-central-1' availabilityZone = 'eu-central-1b' imageId = 'ami-0cc293023f983ed53' diff --git a/example-projects/turnserver/aws-boto3/stop.py b/example-projects/turnserver/aws-boto3/stop.py index bb4acb0..48255cb 100644 --- a/example-projects/turnserver/aws-boto3/stop.py +++ b/example-projects/turnserver/aws-boto3/stop.py @@ -1,6 +1,7 @@ import boto3 from botocore.exceptions import ClientError + region = 'eu-central-1' client = boto3.setup_default_session(region_name=region)