-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathaws_service.py
331 lines (259 loc) · 9.45 KB
/
aws_service.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
import boto3
import sys
import os
import json
import time
def check_region(config_region):
session = boto3.session.Session()
aws_cli_region = session.region_name
return (aws_cli_region == config_region)
def get_all_instances(key_name, ar_name, region):
client = boto3.client('ec2', region_name=region)
response = client.describe_instances(
Filters=[
{
'Name': "key-name",
'Values': [key_name]
}
]
)
instances = []
for reservation in response['Reservations']:
for instance in reservation['Instances']:
if instance['State']['Name']!='terminated':
if len(instance['Tags']) > 0:
tag_value = instance['Tags'][0]['Value']
if tag_value.startswith('ar-'):
if (key_name in tag_value) and (ar_name in tag_value):
instances.append(instance)
return instances
def get_instance_by_name(ec2_name, key_name, ar_name, region):
instances = get_all_instances(key_name, ar_name, region)
for instance in instances:
str = instance['Tags'][0]['Value']
if str == ec2_name:
return instance
def get_instances_by_ids(instance_ids, ec2_name, key_name, ar_name, region):
instances = get_all_instances(key_name, ar_name, region)
result = []
for instance in instances:
if instance['InstanceId'] in instance_ids:
result.append(instance)
return result
def get_single_instance_public_ip(ec2_name, key_name, ar_name, region):
instance = get_instance_by_name(ec2_name, key_name, ar_name, region)
return instance['NetworkInterfaces'][0]['Association']['PublicIp']
def change_ec2_state(instances, new_state, log, region):
client = boto3.client('ec2', region_name=region)
if len(instances) == 0:
log.error('No instance passed.')
sys.exit(1)
if new_state == 'stopped':
for instance in instances:
if instance['State']['Name'] == 'running':
response = client.stop_instances(
InstanceIds=[instance['InstanceId']]
)
log.info('Successfully stopped instance with ID ' +
instance['InstanceId'] + ' .')
elif new_state == 'running':
for instance in instances:
if instance['State']['Name'] == 'stopped':
response = client.start_instances(
InstanceIds=[instance['InstanceId']]
)
log.info('Successfully started instance with ID ' + instance['InstanceId'] + ' .')
def ami_available(ami_name, region):
client = boto3.client('ec2', region_name=region)
try:
images = client.describe_images(Owners=['self'])
except:
return False
for image in images["Images"]:
if 'Name' in image:
if ami_name == image["Name"]:
if image["State"] == "available":
return True
return False
def ami_available_other_region(ami_name):
regions = [
"us-east-1",
"us-east-2",
"us-west-1",
"us-west-2",
"ca-central-1",
"eu-west-1",
"eu-west-2",
"eu-central-1",
"ap-southeast-1",
"ap-southeast-2",
"ap-south-1",
"ap-northeast-1",
"ap-northeast-2",
"sa-east-1",
"cn-north-1"
]
for region in regions:
if ami_available(ami_name, region):
return {"region": region, "image_id": get_image_id(ami_name, region)}
return {}
def get_image_id(ami_name, region):
client = boto3.client('ec2', region_name=region)
images = client.describe_images(Owners=['self'])
for ami in images["Images"]:
if ami_name == ami["Name"]:
return ami["ImageId"]
def copy_image(ami_name, ami_image_id, source_region, dest_region):
session = boto3.client('ec2',region_name=dest_region)
response = session.copy_image(
Name=ami_name,
Description='Copied this AMI from region ' + source_region,
SourceImageId=ami_image_id,
SourceRegion=source_region
)
for x in range(0, 10):
if ami_available(ami_name, dest_region):
break
print("Image not yet available. " + str(10-x) + " tries left.")
time.sleep(60)
if not ami_available(ami_name, dest_region):
print("Error: Copying of AMI took longer as expected.")
sys.exit(1)
def check_s3_bucket(bucket_name):
client = boto3.client('s3')
some_binary_data = b'Here we have some data'
try:
client.put_object(Body=some_binary_data, Bucket=bucket_name, Key='test.txt')
client.delete_object(Bucket=bucket_name, Key='test.txt')
except Exception as e:
return False
return True
def create_s3_bucket(bucket_name, region, logger):
client = boto3.client("s3", region_name=region)
location = {'LocationConstraint': region}
try:
response = client.create_bucket(Bucket=bucket_name, CreateBucketConfiguration=location)
except Exception as e:
logger.error("Couldn't create S3 bucket with name " + bucket_name)
logger.error(e)
sys.exit(1)
logger.info("Created S3 bucket with name " + bucket_name)
def create_dynamoo_db(name, region, logger):
client = boto3.client('dynamodb', region_name=region)
try:
response = client.create_table(
TableName=name,
KeySchema=[
{
'AttributeName': 'LockID',
'KeyType': 'HASH' # Partition key
}
],
AttributeDefinitions=[
{
'AttributeName': 'LockID',
'AttributeType': 'S'
}
],
ProvisionedThroughput={
'ReadCapacityUnits': 10,
'WriteCapacityUnits': 10
}
)
except client.exceptions.ResourceInUseException:
logger.info("DynamoDB table already exists with name " + name)
return
except Exception as e:
logger.error("Couldn't create DynamoDB table with name " + name)
logger.error(e)
sys.exit(1)
logger.info("Created DynamoDB table with name " + name)
def delete_s3_bucket(bucket_name, region, logger):
s3 = boto3.resource('s3', region_name=region)
try:
bucket = s3.Bucket(bucket_name)
bucket.objects.all().delete()
bucket.delete()
except Exception as e:
logger.error("Couldn't delete S3 bucket with name " + bucket_name)
logger.error(e)
return
logger.info("Deleted S3 bucket with name " + bucket_name)
def delete_dynamo_db(name, region, logger):
dynamodb = boto3.resource('dynamodb', region_name=region)
try:
table = dynamodb.Table(name)
table.delete()
except Exception as e:
logger.error("Couldn't delete DynamoDB table with name " + name)
logger.error(e)
return
logger.info("Deleted DynamoDB table with name " + name)
def check_secret_exists(name):
client = boto3.client('secretsmanager')
response = client.list_secrets()
for secret in response['SecretList']:
if secret['Name'] == str(name + '-key'):
return True
return False
def create_secret(name, value, config, logger):
client = boto3.client('secretsmanager')
key_name = name + '-key'
config_name = name + '-config'
try:
response = client.create_secret(
Name=key_name,
SecretString=value
)
response = client.create_secret(
Name=config_name,
SecretString=json.dumps(config)
)
except Exception as e:
logger.error("Couldn't create secret with name " + name)
logger.error(e)
sys.exit(1)
logger.info("Created secret with name " + name)
def get_secret_key(name, logger):
client = boto3.client('secretsmanager')
response = client.get_secret_value(
SecretId=name + '-key'
)
ssh_key_name = name + ".key"
with open(ssh_key_name, "w") as ssh_key:
ssh_key.write(response['SecretString'])
os.chmod(ssh_key_name, 0o600)
def get_secret_config(name, logger):
client = boto3.client('secretsmanager')
response = client.get_secret_value(
SecretId=name + '-config'
)
return json.loads(response['SecretString'])
def delete_secret(name, logger):
client = boto3.client('secretsmanager')
try:
response = client.delete_secret(
SecretId=name + '-key',
ForceDeleteWithoutRecovery=True
)
response = client.delete_secret(
SecretId=name + '-config',
ForceDeleteWithoutRecovery=True
)
except Exception as e:
logger.error("Couldn't delete secret with name " + name)
return
logger.info("Deleted secret with name " + name)
def create_key_pair(name, region, logger):
aws_session = boto3.Session()
client = aws_session.client('ec2', region_name=region)
response = client.create_key_pair(KeyName=name)
ssh_key_name = name + ".key"
with open(ssh_key_name, "w") as ssh_key:
ssh_key.write(response['KeyMaterial'])
os.chmod(ssh_key_name, 0o600)
logger.info("Created key pair with name " + name)
return response['KeyMaterial']
def delete_key_pair(name, region, logger):
ec2 = boto3.client('ec2', region_name=region)
response = ec2.delete_key_pair(KeyName=name)