We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
image-id
image
imageId
1 parent e436fe8 commit 1fabc54Copy full SHA for 1fabc54
1 file changed
src/lib/nodes/create.ts
@@ -207,7 +207,7 @@ Examples:\n
207
208
async function createNodesAction(
209
names: typeof create.args,
210
- options: ReturnType<typeof create.opts> & { imageId?: string },
+ options: ReturnType<typeof create.opts> & { image?: string },
211
) {
212
try {
213
const client = await nodesClient();
@@ -321,7 +321,7 @@ async function createNodesAction(
321
names: names.length > 0 ? names : undefined,
322
zone: options.zone,
323
cloud_init_user_data: userData,
324
- image_id: options.imageId,
+ image_id: options.image,
325
};
326
327
// Handle start time (options.start comes from parseStartDateOrNow parser)
0 commit comments