@awsless/awsless 0.0.562 → 0.0.563
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.
|
@@ -602,7 +602,6 @@ var HealthCheckSchema = z20.object({
|
|
|
602
602
|
)
|
|
603
603
|
}).describe("The health check command and associated configuration parameters for the container.");
|
|
604
604
|
var EnvironmentSchema2 = z20.record(z20.string(), z20.string()).optional().describe("Environment variable key-value pairs.");
|
|
605
|
-
var ArchitectureSchema3 = z20.enum(["x86_64", "arm64"]).describe("The instruction set architecture that the instance supports.");
|
|
606
605
|
var ActionSchema2 = z20.string();
|
|
607
606
|
var ActionsSchema2 = z20.union([ActionSchema2.transform((v) => [v]), ActionSchema2.array()]);
|
|
608
607
|
var ArnSchema2 = z20.string().startsWith("arn:");
|
|
@@ -654,7 +653,7 @@ var ISchema = z20.object({
|
|
|
654
653
|
log: LogSchema2.optional(),
|
|
655
654
|
cpu: CpuSchema.optional(),
|
|
656
655
|
memorySize: MemorySizeSchema2.optional(),
|
|
657
|
-
architecture:
|
|
656
|
+
// architecture: ArchitectureSchema.optional(),
|
|
658
657
|
environment: EnvironmentSchema2.optional(),
|
|
659
658
|
permissions: PermissionsSchema2.optional(),
|
|
660
659
|
healthCheck: HealthCheckSchema.optional()
|
|
@@ -671,7 +670,7 @@ var InstanceDefaultSchema = z20.object({
|
|
|
671
670
|
image: ImageSchema.default("public.ecr.aws/aws-cli/aws-cli:amd64"),
|
|
672
671
|
cpu: CpuSchema.default(0.25),
|
|
673
672
|
memorySize: MemorySizeSchema2.default("512 MB"),
|
|
674
|
-
architecture:
|
|
673
|
+
// architecture: ArchitectureSchema.default('arm64'),
|
|
675
674
|
environment: EnvironmentSchema2.optional(),
|
|
676
675
|
permissions: PermissionsSchema2.optional(),
|
|
677
676
|
healthCheck: HealthCheckSchema.optional(),
|
|
Binary file
|
|
Binary file
|
|
Binary file
|