Maintenance ModeYou are viewing Amplify Gen 1 documentation. Amplify Gen 1 has entered maintenance mode and will reach end of life on May 1, 2027. New project should use Amplify Gen 2. For existing Gen 1 projects, a migration guide and tooling are available to help you upgrade. Switch to the latest Gen 2 docs → フィーチャーフラグ
フィーチャーフラグにより、Amplify CLI の特定の機能を細かく調整することが可能になります。
機能領域に基づいてセクションにグループ化されています。領域はカテゴリまたは他のスコープにすることができます。定義されているフィーチャーフラグにはいくつかの種類があり、そのライフタイムはライフサイクルプロセスで制御されます。
この種類のフィーチャーフラグは、アクティブに開発中の Amplify CLI の特定の機能を有効または無効にするために使用されます。これらのフィーチャーフラグは、機能がリリースされると削除され、サポートされなくなります。
Amplify CLI の歴史を通じて、新しいプロジェクトに利益をもたらす可能性がある拡張がありますが、既存のデプロイメントで破棄的な変更を引き起こす可能性があります。これらのフィーチャーフラグはライフサイクルプロセスによって制御され、緩和と移行の時間を提供します。このタイプのフラグは既存プロジェクトでは無効になり、新しいプロジェクトでは有効になります。
例
- 異なるコードを生成することによって既存プロジェクトを破壊し、バックエンドのデプロイメントが必要になる場合。
- 変更されたリソースのプッシュ操作にはリソースの再作成が必要となり、データ損失につながる可能性がある場合。
- 変更されたリソースのプッシュ操作には、クライアントアプリケーションを動作させるためのデータバックフィルが必要な場合。
- クライアントアプリケーション用に生成されたコードには、新しくプッシュされたバックエンドと互換性を持つようにリビルドと再発行が必要な場合。
実験的なフィーチャーフラグは、特定の機能を使った実験を可能にし、Amplify CLI チームにフィードバックを提供するためのものです。これらの機能を本番環境で有効にすることは強くお勧めしません。
実験的な機能の結果は以下のようになる可能性があります。
- その機能が製品に組み込まれるため、Release タイプのフィーチャーフラグに変換されます。
- 実験的な機能が製品に組み込まれず、コード自体とともにコードベースから削除されます。
各種類のフィーチャーフラグはライフサイクル管理プロセスの下で管理されます。フィーチャーフラグが Amplify CLI に追加されると、リリースノートに記載され、このページも詳細情報で更新されます。フィーチャーフラグを追加した後、このページにはどのバージョンでフィーチャーフラグが追加されたか、計画されている廃止日(ある場合)、どのバージョンでフィーチャーフラグが非推奨になったか、どのバージョンでフィーチャーフラグが削除されたかについての情報が含まれます。
フィーチャーフラグが非推奨になると、まだ使用できますが、使用されると Amplify CLI コマンドの実行中に画面に警告が印刷されます。
削除前に削除日がフィーチャーフラグに追加され、フィーチャーフラグが削除された後、Amplify CLI はそれに関するエラーメッセージと、フィーチャーフラグが削除されたバージョンを表示します。
フィーチャーフラグの設定は、主にプロジェクトの amplify フォルダに cli.json ファイルを持つことで行われます。ファイルが存在しない場合、Amplify CLI は amplify init コマンド中にそれを作成します。発行される値は、新しいプロジェクトのデフォルト値を表しています。このファイルはバージョン管理下にある必要があり、ローカル、CI/CD 環境、チームメンバー間で同じ機能が使用されることを確認する必要があります。現在チェックアウトされている환경用の環境固有ファイルが存在する場合、amplify env add コマンド中に同じファイルが新しく作成された環境にもコピーされます。
設定ファイルの例
何らかの理由で異なる機能を特定の Amplify CLI 環境に対して有効にする必要がある場合は、プロジェクトレベルのファイルのコピーを次の命名規則で作成できます:cli.{environment name}.json。
Amplify CLI は環境変数と .env ファイルからのフィーチャーフラグ値の定義と上書きをサポートしています。
環境変数は Amplify CLI によってピックアップされるために、命名規則に従う必要があります:
- プロジェクトレベルの上書き:
AMPLIFYCLI_{SECTION}__{PROPERTY}、例:AMPLIFYCLI_GRAPHQLTRANSFORMER__TRANSFORMERVERSION
- 環境固有の上書き:
AMPLIFYCLI_{ENVNAME}_{SECTION}__{PROPERTY}、例:AMPLIFYCLI_PROD_GRAPHQLTRANSFORMER__TRANSFORMERVERSION
.env ファイルがプロジェクトのルートフォルダで使用されている場合、現在のプロセスの環境変数の上にマージされ、それらを上書きします。
複数のレベルの設定オプションとオーバーライドがあるため、Amplify CLI は以下のようにトップダウン評価を行います:
cli.json
cli.{environment name}.json
- プロジェクトレベルの環境変数
- CLI 環境レベルの環境変数
注: フィーチャーフラグは大文字と小文字を区別しませんが、読みやすくするため camelCase で説明されています
Feature Flags related to AppSync backed APIs.
Changes the permission format to grant access to graphql operations instead of appsync control plane operations
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.42.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Creates IAM policies to allow Query/Mutations | | ✅ |
false | Uses previous policy format which allows control plane access to AppSync | ✅ | |
Feature Flag related to GraphQL Transformer
Automatically add owner field to type when owner fields are not in the type
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.30.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Inserts the owner field from auth rules when its missing in type | | ✅ |
false | Doesn't insert the owner field automatically | ✅ | |
Use word specific pluralization instead of only appending an "s" to every word. Note: this feature flag is only respected when using GraphQL Transformer v1.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 5.0.2 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | When pluralizing values i.e. for list resolvers, 'Match' becomes 'Matches' | | |
false | When pluralizing values i.e. for list resolvers, 'Match' becomes 'Matchs' | ✅ | ✅ |
Throw an error when compiling the GraphQL schema if a type name is a reserved word.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.32.1 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Throws an error if a type name is a reserved word. | ✅ | ✅ |
false | Allows compilation to pass with reserved words as type names. However, you may encounter downstream GraphQL errors. | | |
Use pipeline resolver-based GraphQL Transformer (GraphQL Transformer vNext).
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.32.4 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Enable pipeline resolver-based GraphQL Transformer (GraphQL Transformer vNext). | | |
false | Disables pipeline resolver-based GraphQL Transformer. | ✅ | ✅ |
Enable multiple GSI updates through iterative incremental deployments.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.38.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | GraphQL schemas changes can contain multiple GSI changes. | | ✅ |
false | Throws Error when mutating more than 1 GSIs in update flow. . | ✅ | |
Changes the behaviour of @key directive to always create GSIs.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.41.x | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | @key will always create GSIs for named keys. | | ✅ |
false | @key create an LSI when the named key includes a primary field. | ✅ | |
If a custom mutation is defined on a model, prevent the regeneration of that mutation
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.45.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | If a custom create, update, or delete mutation is defined on a model, the input will not be regenerated | | ✅ |
false | The GraphQL Transformer will recreate inputs for models even if they have the custom mutations specified | ✅ | |
Sets which version of the GraphQL Transformer will be used
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.4.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
1 | The GraphQL Transformer V1 will be used | ✅ | |
2 | The GraphQL Transformer V2 will be used | | ✅ |
Prevent the CLI from prompting for schema migration
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.4.0 | November 10th 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | GraphQL Transformer V1 projects will not be prompted to migrate to V2 | ✅ | ✅ |
false | GraphQL Transformer V1 projects will be prompted to migrate to V2 | | |
Adds notification of @auth updates to improve security for @primaryKey and @index
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 7.6.12 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | A notification with a prompt will appear, after which security updates are automatically applied and no further prompt will appear | ✅ | |
false | There is no notification of security updates | | ✅ |
Adds a notification of @auth security change.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 7.6.15 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | A notification with a prompt will appear, after which security updates are automatically applied and no further prompt will appear | ✅ | |
false | There is no notification of security updates | | ✅ |
Changes the default identity claim to for owner-based @auth from 'username' to 'sub::username'
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 8.x | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Uses a default owner field format of '<sub>::<username>' to write records and reads both '<username>' and '<sub>::<username>' | ✅ | ✅ |
false | Uses a default owner field format of '<username>' to write records and reads '<username>' | | |
Changes the naming convention for primary key connection fields.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 8.3.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Uses 'Id' in the name. (Type + RelatedType + Id) | | |
false | Uses the related type field name in the name. (Type + RelatedType + RelatedTypeFieldName) | ✅ | ✅ |
Changes the behaviour of @index directive to auto-generate Queries for indexes if no 'queryField' is provided.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 8.5.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | An empty 'queryField' will cause a Query to be auto-generated. Explicit null value will disable this functionality | | ✅ |
false | A Query will only be created if the 'queryField' is explicitly set | ✅ | |
Changes the behavior of relational directives on model types that contain a custom primary key by generating connection fields that respect the attributes of the primary key and sort key fields. The changes include naming convention, the number of connected fields, and their field types. In addition, this changes the code generation for DataStore models of all platforms to enable the custom primary key feature.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 10.0.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
false | Only one connection field with type ID generated on connected models. Model-gen with custom primary key feature is disabled. | ✅ | |
true | Connection field(s) are generated respecting the attributes of priamry key and sort key fields. Model-gen with custom primary key feature is enabled. | | ✅ |
Performs a deep merge with default directives and custom directives.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 9.1.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
false | Merge default directives and custom directives with a single level depth. Custom directives will take precedent. | ✅ | ✅ |
true | Merge default directives and custom directives with unlimitted depth. Custom directives will take precedent. | | |
Populates the owner field automatically if the user is already authorized by static user pool authorization rules
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 9.2.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | If the user is authorized, the owner field is automatically populated | ✅ | |
false | If the user is authorized by static user pool authorization rules, the owner field needs to be explicitly set by the developer | | ✅ |
Toggles whether subscriptions will inherit related authorization when relational fields are set as required
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 12.12.4 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Subscriptions will inherit the primary model authorization rules for the relational fields | | |
false | Relational fields will be redacted in mutation response when there is a difference between auth rules between primary and related models. | ✅ | ✅ |
Feature Flag related to iOS projects
Automatically add DataStore / API models to the Xcode project.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.40.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | All newly generated DataStore/API models are auto-added to the Xcode project | | ✅ |
false | All newly generated DataStore/API models are NOT auto-added to the Xcode project. | ✅ | |
Feature Flag related to auth
Toggles case insensitivity for Cognito login mechanisms (username, email etc..)
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.40.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Emails and usernames are case insensitive | | ✅ |
false | Emails and usernames are case sensitive. | ✅ | |
Toggles terminology used for allow and deny lists.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.47.0 | April 1st 2022 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | The terms allowlist and denylist are used. | | ✅ |
false | The legacy terms whitelist and blacklist are used. | ✅ | |
Toggles the creation of auth triggers
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.51.0 | December 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Creates auth triggers as custom Lambdas to be used with Apis and Storage. | | ✅ |
false | Creates auth triggers via Cognito CloudFormation | ✅ | |
Forces the use of aliasAttributes with Cognito rather than usernameAttributes
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.0.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Forces the CLI to use aliasAttributes when creating auth, allowing for a preferred_username | | |
false | Continue to use usernameAttributes with Cognito | ✅ | ✅ |
Allows the use of only TOTP if only phone_number is configured, if another attribute is added SMS MFA is enabled
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 5.3.1 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Allow TOTP to be configured for login by itself | | |
false | TOTP cannot be used alone for login with Cognito | ✅ | ✅ |
Feature Flag related to Codegen
Choose between implementations of internal DataStore model generator package. Refer https://github.com/aws-amplify/amplify-codegen/blob/main/FeatureFlags.md
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.40.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Use the models generator internal package implementation at https://github.com/aws-amplify/amplify-codegen/tree/main/packages/appsync-modelgen-plugin | | ✅ |
false | Use the deprecated models generator package implementation at https://github.com/aws-amplify/amplify-cli/tree/main/packages/amplify-codegen-appsync-model-plugin | ✅ | |
Choose between implementations of internal GraphQL documents generator package. Refer https://github.com/aws-amplify/amplify-codegen/blob/main/FeatureFlags.md
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.40.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Use the GraphQL documents generator internal package implementation at https://github.com/aws-amplify/amplify-codegen | | ✅ |
false | Use the deprecated GraphQL documents generation package implementation at https://github.com/aws-amplify/amplify-cli/tree/main/packages/amplify-graphql-docs-generator | ✅ | |
Choose between implementations of internal GraphQL types generator package. Refer https://github.com/aws-amplify/amplify-codegen/blob/main/FeatureFlags.md
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.40.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Use the types generator internal package implementation at https://github.com/aws-amplify/amplify-codegen | | ✅ |
false | Use the deprecated types generation package implementation at https://github.com/aws-amplify/amplify-cli/tree/main/packages/amplify-graphql-types-generator | ✅ | |
Clears the generated models folder before they are re-generated.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.40.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Recommended to be set true when there are no hand-written files in the modelgen output folder. | | ✅ |
false | Does not remove pre-existing files from the modelgen output folder. This would retain the generated models even after the corresponding types are removed from the GraphQL schema. | ✅ | |
Retains the case style developer uses while naming the GraphQL types in schema
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.40.0 | May 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | Retain the case style used for naming the GraphQL types in the schema. Refer https://github.com/aws-amplify/amplify-codegen/pull/89 | | ✅ |
false | Generate camelCase/PascalCase variable names for types irrespective of the case style used for naming the types. | ✅ | |
Add read-only timestamp fields in modelgen. For more infomation please refer change logs of amplify repos
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 4.51.2 | Nov 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Add read-only timestamp `createdAt` and `updatedAt` fields in modelgen. Minimum version for amplify library: amplify-ios@1.9.0, amplify-android@1.17.2 | | ✅ |
false | No read-only timestamp fields will be added | ✅ | |
Generate Dart models with null safety for Flutter applications using DataStore.
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 5.1.0 | Jan 1st 2022 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Generate Dart models with null safety. Minimum supported version for Amplify library: amplify-flutter is 0.2.0 | | ✅ |
false | Generate Dart models without null safety | ✅ | |
Configure the nullability of the List and List components in Datastore Models generation
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 5.1.2 | Nov 1st 2021 | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Respect the nullability of List types as specified in the GraphQL schema. Refer https://docs.amplify.aws/cli/migration/list-nullability for more information. | | ✅ |
false | Use the nullability specification of list components to decide the nullability of List. | ✅ | |
Adds auth provider details to iOS models
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 5.0.2 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Adds auth provider details to iOS models | | ✅ |
false | iOS models will not be able to access auth provider details | ✅ | |
Adds key/index details to iOS models
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 5.0.2 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Adds key/index details to iOS models | | ✅ |
false | iOS models will not be able to access key/index details | ✅ | |
Generate models for lazy loading and custom selection set
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | x.x.x | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | [Recommended] Add support for lazy loading and custom selection set. | | |
false | models will not support selection set customization and lazy loading. | ✅ | |
Feature Flags related to region mapping support.
Controls Comprehend region mapping
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.1.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
0 | us-west-1, eu-west-3, eu-north-1, ap-northeast-1, ap-northeast-2, ap-south-1, me-south-1, and sa-east-1 are mapped to other regions. | ✅ | |
1 | us-west-1, eu-west-3, eu-north-1, me-south-1, and sa-east-1 are mapped to other regions. | | ✅ |
Controls Pinpoint region mapping
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.1.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
0 | ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, eu-north-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, and us-west-1 are mapped to other regions. | ✅ | |
1 | ap-northeast-3, cn-north-1, cn-northwest-1, eu-north-1, eu-west-3, me-south-1, sa-east-1, us-east-2, and us-west-1 are mapped to other regions. | | ✅ |
Controls Rekognition region mapping
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.1.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
0 | ca-central-1, eu-north-1, eu-west-3, me-south-1, and sa-east-1 are mapped to other regions. | ✅ | |
1 | eu-north-1, eu-west-3, me-south-1, and sa-east-1 are mapped to other regions. | | ✅ |
Controls Textract region mapping
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.1.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
0 | ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-2, eu-west-3, me-south-1, and sa-east-1 are mapped to other regions. | ✅ | |
1 | ap-northeast-1, eu-north-1, eu-west-3, me-south-1, and sa-east-1 are mapped to other regions. | | ✅ |
Controls Transcribe region mapping
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.1.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
0 | eu-north-1 and ap-northeast-1 are mapped to other regions. | ✅ | |
1 | eu-north-1 is mapped to another region. | | ✅ |
Controls Translate region mapping
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 6.1.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
0 | ap-southeast-2, eu-west-2, me-south-1, sa-east-1, and us-east-2 are mapped to other regions. | ✅ | |
1 | ap-southeast-2, eu-west-2, and us-east-2 are mapped to other regions. | | ✅ |
Enables support for overrides, prevents using unsupported versions of the CLI with overridden resources
Enables support for overrides
| Type | Added | Deprecation date | Deprecated | Removal date | Removed |
|---|
| Feature | 7.3.0 | | | | |
| Value | Description | Default for existing projects | Default for new projects |
|---|
true | The CLI ignores the value of this flag | ✅ | ✅ |
false | The CLI ignores the value of this flag | | |