@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 +2 -2
- package/dist/build-json-schema.js +1 -1
- package/dist/stack.json +1 -1
- package/package.json +7 -7
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
|
-
|
|
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.
|
|
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
|
-
|
|
503
|
+
waitForTermination: z15.boolean().default(true)
|
|
504
504
|
})
|
|
505
505
|
).optional().describe("Define the instances in your stack.");
|
|
506
506
|
|