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: src/commands/import.ts
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,9 @@ For more information, visit: https://docs.codifycli.com/commands/import`
49
49
'updateExisting': Flags.boolean({
50
50
description: 'Force the CLI to try to update an existing file instead of prompting the user with the option of creating a new file',
51
51
}),
52
+
'includeSensitive': Flags.boolean({
53
+
description: 'Allow the import of resources with sensitive parameters. This only applies when a resource id hasn\'t been explicitly included. Otherwise, this parameter will be ignored.',
54
+
}),
52
55
}
53
56
54
57
publicasyncrun(): Promise<void>{
@@ -70,8 +73,8 @@ For more information, visit: https://docs.codifycli.com/commands/import`
0 commit comments