@@ -198,6 +198,7 @@ export async function deploy(argv: any) {
198
198
const noColor = argv . noColor ;
199
199
const migrateState = argv . migrateState ;
200
200
const skipSynth = argv . skipSynth ;
201
+ const skipProviderLock = argv . skipProviderLock ;
201
202
202
203
let outputsPath : string | undefined = undefined ;
203
204
// eslint-disable-next-line @typescript-eslint/no-empty-function
@@ -225,6 +226,7 @@ export async function deploy(argv: any) {
225
226
noColor,
226
227
migrateState,
227
228
skipSynth,
229
+ skipProviderLock,
228
230
} ) ,
229
231
) ;
230
232
}
@@ -247,6 +249,7 @@ export async function destroy(argv: any) {
247
249
const noColor = argv . noColor ;
248
250
const migrateState = argv . migrateState ;
249
251
const skipSynth = argv . skipSynth ;
252
+ const skipProviderLock = argv . skipProviderLock ;
250
253
251
254
await renderInk (
252
255
React . createElement ( Destroy , {
@@ -262,6 +265,7 @@ export async function destroy(argv: any) {
262
265
noColor,
263
266
migrateState,
264
267
skipSynth,
268
+ skipProviderLock,
265
269
} ) ,
266
270
) ;
267
271
}
@@ -281,6 +285,7 @@ export async function diff(argv: any) {
281
285
const noColor = argv . noColor ;
282
286
const migrateState = argv . migrateState ;
283
287
const skipSynth = argv . skipSynth ;
288
+ const skipProviderLock = argv . skipProviderLock ;
284
289
285
290
await renderInk (
286
291
React . createElement ( Diff , {
@@ -294,6 +299,7 @@ export async function diff(argv: any) {
294
299
noColor,
295
300
migrateState,
296
301
skipSynth,
302
+ skipProviderLock,
297
303
} ) ,
298
304
) ;
299
305
}
@@ -519,6 +525,7 @@ export async function output(argv: any) {
519
525
const stacks = argv . stacks ;
520
526
const includeSensitiveOutputs = argv . outputsFileIncludeSensitiveOutputs ;
521
527
const skipSynth = argv . skipSynth ;
528
+ const skipProviderLock = argv . skipProviderLock ;
522
529
let outputsPath : string | undefined = undefined ;
523
530
// eslint-disable-next-line @typescript-eslint/no-empty-function
524
531
let onOutputsRetrieved : ( outputs : NestedTerraformOutputs ) => void = ( ) => { } ;
@@ -537,6 +544,7 @@ export async function output(argv: any) {
537
544
onOutputsRetrieved,
538
545
outputsPath,
539
546
skipSynth,
547
+ skipProviderLock,
540
548
} ) ,
541
549
) ;
542
550
}
0 commit comments