From dd13f5560fb0e89133f4a44e041221743e954613 Mon Sep 17 00:00:00 2001 From: Sebastian Rieger Date: Tue, 2 Jul 2019 13:47:28 +0200 Subject: [PATCH] added example-projects --- example-projects/turnserver/aws-boto3/start.py | 1 + example-projects/turnserver/aws-boto3/stop.py | 1 + 2 files changed, 2 insertions(+) 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)