You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cronjobs/src/commands/build_bundles.py
+22-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
15
15
importlz4.block
16
16
importrequests
17
-
fromgoogle.cloudimportstorage
17
+
fromgoogle.cloudimportstorage, compute_v1
18
18
19
19
from . importKintoClient, call_parallel, retry_timeout
20
20
@@ -31,6 +31,11 @@
31
31
BUILD_ALL=os.getenv("BUILD_ALL", "0") in"1yY"
32
32
SKIP_UPLOAD=os.getenv("SKIP_UPLOAD", "0") in"1yY"
33
33
34
+
# URL map name is "{application}-{realm}-{environment}-{cdn_name}-cdn"
35
+
# See https://github.com/mozilla-it/webservices-infra/blob/1eafab1688d164a0f3e2f8dfcfb6ad1647837b67/remote-settings/tf/modules/backend_bucket_cdn/main.tf#L2
36
+
# and https://github.com/mozilla-it/webservices-infra/blob/1eafab1688d164a0f3e2f8dfcfb6ad1647837b67/remote-settings/tf/modules/backend_bucket_cdn/main.tf#L72
0 commit comments