-
Notifications
You must be signed in to change notification settings - Fork 538
/
preconditions.py
executable file
·493 lines (396 loc) · 14.6 KB
/
preconditions.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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
#!/usr/bin/env python3
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
The preconditions script helps avoid situations where a project resource
can be left in a half deployed and irrecoverable state.
See
https://github.com/terraform-google-modules/terraform-google-project-factory/blob/master/docs/TROUBLESHOOTING.md
for common errors that this script helps prevent.
"""
import argparse
import json
import logging
import re
import sys
import os
try:
import google.auth
from google.auth import impersonated_credentials
from google.oauth2 import service_account
from googleapiclient import discovery
except ImportError as e:
if os.environ.get('GRACEFUL_IMPORTERROR', '') != '':
sys.stderr.write("Unable to import Google API dependencies, skipping "
"GCP precondition checks!\n")
sys.exit(0)
else:
raise e
class Requirements:
def __init__(self, req_type, resource, required, provided):
self.req_type = req_type
self.resource = resource
self.required = set(required)
self.provided = set(provided)
def is_satisfied(self):
"""
Is this requirement satisfied?
"""
return (self.required & self.provided) == self.required
def satisfied(self):
"""
Generate a list of requirements that have been satisfied. Resources
that were provided but aren't required are not returned.
"""
return list(self.required & self.provided)
def unsatisfied(self):
"""
Generate a list of requirements that have not been satisfied.
"""
return list(self.required - self.provided)
def asdict(self):
return {
"type": self.req_type,
"name": self.resource,
"satisfied": self.satisfied(),
"unsatisfied": self.unsatisfied(),
}
class OrgPermissions:
# Permissions that the service account must have for any organization
ALL_PERMISSIONS = []
# Permissions required when the service account is attaching a new project
# to a shared VPC
SHARED_VPC_PERMISSIONS = [
# Typically granted with `roles/compute.networkAdmin`
"compute.subnetworks.setIamPolicy",
# Typically granted with `roles/compute.xpnAdmin`
"compute.organizations.enableXpnResource",
]
# Permissions required when the service account is creating a new project
# directly within an organization (as opposed to a folder)
PARENT_PERMISSIONS = [
# Typically granted with `roles/resourcemanager.projectCreator`
"resourcemanager.projects.create"
]
def __init__(self, org_id, shared_vpc=False, parent=False):
"""
Create a new organization validator.
Args:
org_id (str): The organization ID
shared_vpc (bool): Whether shared VPC permissions should be checked
parent (bool): Whether parent permissions should be checked
"""
self.org_id = org_id
self.shared_vpc = shared_vpc
self.parent = parent
self.permissions = self.ALL_PERMISSIONS[:]
if self.shared_vpc:
self.permissions += self.SHARED_VPC_PERMISSIONS
if self.parent:
self.permissions += self.PARENT_PERMISSIONS
def validate(self, credentials):
body = {"permissions": self.permissions}
resource = "organizations/" + self.org_id
# no permissions to validate
if len(self.permissions) == 0:
return {
"type": "Service account permissions on organization",
"name": resource,
"satisfied": [],
"unsatisfied": []
}
service = discovery.build(
'cloudresourcemanager', 'v1',
credentials=credentials
)
request = service.organizations().testIamPermissions(
resource=resource,
body=body)
response = request.execute()
req = Requirements(
"Service account permissions on organization",
resource,
self.permissions,
response.get("permissions", []),
)
return req.asdict()
class FolderPermissions:
# Permissions required when the service account is creating a project
# within a folder (as opposed to an organization).
PARENT_PERMISSIONS = [
# Typically granted with `roles/resourcemanager.projectCreator`
"resourcemanager.projects.create",
]
def __init__(self, folder_id, parent=False):
self.folder_id = folder_id
self.parent = parent
self.permissions = []
if self.parent:
self.permissions += self.PARENT_PERMISSIONS
def validate(self, credentials):
service = discovery.build(
'cloudresourcemanager', 'v2',
credentials=credentials
)
body = {"permissions": self.permissions}
if self.folder_id.startswith("folders/"):
resource = self.folder_id
else:
resource = "folders/" + self.folder_id
request = service.folders().testIamPermissions(
resource=resource,
body=body)
response = request.execute()
req = Requirements(
"Service account permissions on parent folder",
resource,
self.permissions,
response.get("permissions", [])
)
return req.asdict()
class SharedVpcProjectPermissions:
ALL_PERMISSIONS = [
# Typically granted with 'roles/resourcemanager.projectIamAdmin'
"resourcemanager.projects.setIamPolicy",
]
def __init__(self, project_id):
self.project_id = project_id
self.permissions = self.ALL_PERMISSIONS[:]
def validate(self, credentials):
service = discovery.build(
'cloudresourcemanager', 'v1',
credentials=credentials
)
body = {"permissions": self.permissions}
resource = self.project_id
request = service.projects().testIamPermissions(
resource=resource,
body=body)
response = request.execute()
req = Requirements(
"Service account permissions on host VPC project",
resource,
self.permissions,
response.get("permissions", []),
)
return req.asdict()
class SeedProjectServices:
"""
Test that the project containing the service project has enabled the
required APIs.
"""
REQUIRED_APIS = [
"admin.googleapis.com",
"iam.googleapis.com",
"cloudbilling.googleapis.com",
"cloudresourcemanager.googleapis.com",
]
def __init__(self, project_id):
self.project_id = project_id
def validate(self, credentials):
service = discovery.build(
'serviceusage', 'v1',
credentials=credentials
)
parent = "projects/" + self.project_id
enabled = []
for required_api in self.REQUIRED_APIS:
request = service.services().get(
name=parent + "/services/" + required_api
)
response = request.execute()
if response['state'] == "ENABLED":
enabled.append(required_api)
req = Requirements(
"Required APIs on service account project",
parent,
self.REQUIRED_APIS,
enabled,
)
return req.asdict()
class BillingAccount:
"""
Test that the service account is able to link the billing account to
projects.
"""
REQUIRED_PERMISSIONS = [
"billing.resourceAssociations.create"
]
def __init__(self, billing_account):
self.billing_account = billing_account
def validate(self, credentials):
service = discovery.build(
'cloudbilling', 'v1',
credentials=credentials
)
body = {"permissions": self.REQUIRED_PERMISSIONS}
resource = "billingAccounts/" + self.billing_account
request = service.billingAccounts().testIamPermissions(
resource=resource,
body=body)
response = request.execute()
req = Requirements(
"Service account permissions on billing account",
resource,
self.REQUIRED_PERMISSIONS,
response.get("permissions", []),
)
return req.asdict()
@classmethod
def argument_type(cls,
string,
pat=re.compile(r"[A-Z0-9]{6}-[A-Z0-9]{6}-[A-Z0-9]{6}")):
if not pat.match(string):
msg = "%r is not a valid billing account ID format" % string
raise argparse.ArgumentTypeError(msg)
return string
def setup():
logging.basicConfig()
logging.getLogger().setLevel(logging.WARN)
cache_log = logging.getLogger('googleapiclient.discovery_cache')
cache_log.setLevel(logging.ERROR)
requests_log = logging.getLogger("requests.packages.urllib3")
requests_log.setLevel(logging.DEBUG)
requests_log.propagate = True
def get_credentials(credentials_path, impersonate_service_account):
"""Fetch credentials for verifying Project Factory preconditions.
Credentials will be loaded from a service account file if present,
generated by impersonating the service account provided or from
Application Default Credentials otherwise.
Args:
credentials_path: an optional path to service account credentials.
impersonate_service_account: an optional service account to
impersonate.
Returns:
(credentials, project_id): A tuple containing the credentials and
associated project ID.
"""
if credentials_path is not None:
# Prefer an explicit credentials file
svc_credentials = service_account.Credentials\
.from_service_account_file(credentials_path)
credentials = (svc_credentials, svc_credentials.project_id)
elif impersonate_service_account is not None:
try:
source_credentials = google.auth.default()
credentials = impersonated_credentials.Credentials(
source_credentials=source_credentials,
target_principal=impersonate_service_account,
target_scopes=[
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/userinfo.email'
],
lifetime=120)
except google.auth.exceptions.RefreshError:
raise google.auth.exceptions.DefaultCredentialsError()
else:
# Fall back to application default credentials
try:
credentials = google.auth.default()
except google.auth.exceptions.RefreshError:
raise google.auth.exceptions.DefaultCredentialsError()
return credentials
class EmptyStrAction(argparse.Action):
"""
Convert empty string values parsed by argparse into None.
"""
def __call__(self, parser, namespace, values, option_string=None):
values = None if values == '' else values
setattr(namespace, self.dest, values)
def argparser():
parser = argparse.ArgumentParser(
description="""Check that Project Factory preconditions are met on the
provided service account, project parent, and billing account.
"""
)
parser.add_argument(
'--verbose', required=False, default=False,
help='Enable verbose logging'
)
parser.add_argument(
'--credentials_path', required=False, action=EmptyStrAction,
help='The service account credentials to check'
)
parser.add_argument(
'--impersonate_service_account', required=False, action=EmptyStrAction,
help="""A service account to impersonate using
default application credentials."""
)
parser.add_argument(
'--billing_account', required=True,
help='The billing account to be associated with a new project',
type=BillingAccount.argument_type
)
parser.add_argument(
'--org_id', required=True, action=EmptyStrAction,
help='The organization ID'
)
parser.add_argument(
'--folder_id', required=False, action=EmptyStrAction,
help='The folder ID where projects will be created'
)
parser.add_argument(
'--shared_vpc', required=False, action=EmptyStrAction,
help='The project ID of the shared VPC host'
)
return parser
def validators_for(opts, seed_project):
"""
Given a set of CLI options, determine which preconditions we need
to check and generate corresponding validators.
"""
validators = []
if seed_project is not None:
seed_project_validator = SeedProjectServices(seed_project)
validators.append(seed_project_validator)
validators.append(BillingAccount(opts.billing_account))
if opts.shared_vpc is not None:
host_vpc_validator = SharedVpcProjectPermissions(opts.shared_vpc)
validators.append(host_vpc_validator)
has_shared_vpc = True
else:
has_shared_vpc = False
if opts.folder_id is not None:
validators.append(FolderPermissions(opts.folder_id, parent=True))
org_parent = False
else:
org_parent = True
validators.append(
OrgPermissions(
opts.org_id, parent=org_parent, shared_vpc=has_shared_vpc))
return validators
def main(argv):
try:
opts = argparser().parse_args(argv[1:])
(credentials, project_id) = get_credentials(
opts.credentials_path,
opts.impersonate_service_account)
validators = validators_for(opts, project_id)
results = []
for validator in validators:
results.append(validator.validate(credentials))
retcode = 0
for result in results:
if len(result["unsatisfied"]) > 0:
retcode = 1
if retcode == 1 or opts.verbose:
json.dump(results, sys.stdout, indent=4)
except FileNotFoundError as error: # noqa: F821
print(error)
retcode = 1
return retcode
if __name__ == "__main__":
setup()
retcode = main(sys.argv)
sys.exit(retcode)