@gradientedge/cdk-utils 7.8.0 → 7.9.0

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.
@@ -102,7 +102,7 @@ class EcsManager {
102
102
  proxyConfiguration: props.proxyConfiguration,
103
103
  runtimePlatform: {
104
104
  operatingSystemFamily: props.runtimePlatform?.operatingSystemFamily ?? ecs.OperatingSystemFamily.LINUX,
105
- cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.ARM64,
105
+ cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.X86_64,
106
106
  },
107
107
  taskRole: role,
108
108
  volumes: props.volumes,
@@ -151,7 +151,7 @@ class EcsManager {
151
151
  memoryLimitMiB: props.memoryLimitMiB,
152
152
  runtimePlatform: {
153
153
  operatingSystemFamily: props.runtimePlatform?.operatingSystemFamily ?? ecs.OperatingSystemFamily.LINUX,
154
- cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.ARM64,
154
+ cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.X86_64,
155
155
  },
156
156
  serviceName: `${id}-${scope.props.stage}`,
157
157
  taskImageOptions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "7.8.0",
3
+ "version": "7.9.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -95,7 +95,7 @@ export class EcsManager {
95
95
  proxyConfiguration: props.proxyConfiguration,
96
96
  runtimePlatform: {
97
97
  operatingSystemFamily: props.runtimePlatform?.operatingSystemFamily ?? ecs.OperatingSystemFamily.LINUX,
98
- cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.ARM64,
98
+ cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.X86_64,
99
99
  },
100
100
  taskRole: role,
101
101
  volumes: props.volumes,
@@ -153,7 +153,7 @@ export class EcsManager {
153
153
  memoryLimitMiB: props.memoryLimitMiB,
154
154
  runtimePlatform: {
155
155
  operatingSystemFamily: props.runtimePlatform?.operatingSystemFamily ?? ecs.OperatingSystemFamily.LINUX,
156
- cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.ARM64,
156
+ cpuArchitecture: props.runtimePlatform?.cpuArchitecture ?? ecs.CpuArchitecture.X86_64,
157
157
  },
158
158
  serviceName: `${id}-${scope.props.stage}`,
159
159
  taskImageOptions: {