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
.option('--region <region>','region for postgres/compute, e.g. us-east (see `insta regions`)')
107
109
.option('--public','storage only: serve the bucket with anonymous public-read (default private)')
108
110
.option('--image <url>','compute only: run this container image at creation')
109
111
.option('--port <n>','compute only: port the image listens on (default 8080)')
@@ -161,6 +163,9 @@ compute.command('status [service]').description("Show a compute service's desire
161
163
// ---- manifest ----
162
164
program.command('manifest').description('Print an agent-legible view of the project environments').option('--json').action(guard((o)=>manifest(o)))
163
165
166
+
// ---- regions ----
167
+
program.command('regions').description('List regions available for postgres/compute services').option('--json').action(guard((o)=>regions.regionsList(o)))
0 commit comments