Skip to content

Commit

Permalink
Revert arm64 default change, only recommendation not default
Browse files Browse the repository at this point in the history
  • Loading branch information
andybee authored and ryanblock committed Aug 15, 2023
1 parent 1b3dfd2 commit 0b96c1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Configure the deployed function with [the `@aws` pragma](../project-manifest/aws
- [`provisionedConcurrency`](#provisionedconcurrency) - number, `1` to AWS account maximum (disabled by default)
- [`layers`](#layers) - Up to 5 Lambda layer ARNs; **must be in the same region as deployed**
- [`policies`](#policies) - Configure [AWS SAM policy templates](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-policy-templates.html)
- [`architecture`](#architecture) - [AWS Architecture](https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html) for the function: `arm64` (default) or `x86_64`
- [`architecture`](#architecture) - [AWS Architecture](https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html) for the function: `x86_64` (default) or `arm64`
- [`storage`](#storage) - number, between `512` (default) and `10240` MB. The function's ephemeral storage (`/tmp` file system).
- [`fifo`](#fifo) - boolean, `true` (default) or `false` to use `standard` SQS type

Expand Down
4 changes: 2 additions & 2 deletions src/views/docs/en/reference/project-manifest/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ Configure Lambda function `layers` with max 5 Lambda Layer ARNs. Lambda Layers m
### `architecture`

Lambda [CPU Architecture](https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html) of your functions.
- `arm64` (default) - (only available in certain AWS regions) 64-bit ARM architecture
- `x86_64` - 64-bit x86 architecture
- `x86_64` (default) - 64-bit x86 architecture
- `arm64` - (only available in certain AWS regions) 64-bit ARM architecture

### `storage`

Expand Down

0 comments on commit 0b96c1c

Please sign in to comment.