@awsless/awsless 0.0.286 → 0.0.287

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin.js CHANGED
@@ -780,7 +780,7 @@ var InstancesSchema = z12.record(
780
780
  command: CommandSchema.optional(),
781
781
  environment: EnvironmentSchema2.optional(),
782
782
  permissions: PermissionsSchema2.optional(),
783
- forForTermination: z12.boolean().default(true)
783
+ waitForTermination: z12.boolean().default(true)
784
784
  })
785
785
  ).optional().describe("Define the instances in your stack.");
786
786
 
@@ -3600,7 +3600,7 @@ var instanceFeature = defineFeature({
3600
3600
  iamInstanceProfile: profile.arn,
3601
3601
  launchTemplate: template,
3602
3602
  subnetId: ctx.shared.get(`vpc-public-subnet-id-1`),
3603
- waitForTermination: props.forForTermination
3603
+ waitForTermination: props.waitForTermination
3604
3604
  });
3605
3605
  instance.dependsOn(code);
3606
3606
  const logGroup = new aws10.cloudWatch.LogGroup(group, "log", {
@@ -500,7 +500,7 @@ var InstancesSchema = z15.record(
500
500
  command: CommandSchema.optional(),
501
501
  environment: EnvironmentSchema2.optional(),
502
502
  permissions: PermissionsSchema2.optional(),
503
- forForTermination: z15.boolean().default(true)
503
+ waitForTermination: z15.boolean().default(true)
504
504
  })
505
505
  ).optional().describe("Define the instances in your stack.");
506
506