Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding section for migrations #369

Merged
merged 3 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: adding section for migrations
  • Loading branch information
armsteadj1 committed Apr 19, 2024
commit cdab4909ba14ac0a9fd51c70e3ab4c3c64c7a861
2 changes: 1 addition & 1 deletion docs/api/deprecations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following table lists deprecated features and their respective shutdown date
| `request_reactor_id` and `response_reactor_id` removed from Proxies | November 30, 2022 | March 31, 2023 | In order to simplify management of Proxies, use of `request_transform` and `response_tramsform` has been recommended over Reactors. |
| Token Privacy Settings | October 13, 2022 | February 1, 2023 | Privacy settings (i.e. classification, impact level, and restriction policy) have been deprecated and replaced by a more flexible authorization model based upon [Containers](/docs/concepts/what-are-containers) and [Access Rules](/docs/concepts/access-controls#what-are-access-rules). For more information, see the section below on [Migrating from Privacy Settings](#migrating-from-privacy-settings). |
| Reactor Formulas | October 16, 2022 | February 14, 2024 | Reactor Formulas have been deprecated in favor of Reactors with `code`. For more information, see the section below on [Migrating from Reactor Formulas](#migrating-from-reactor-formulas). |
| Application Key Regenerate | April 17, 2024 | October 17, 2024 | Regenerating API Keys for an Application has been replaced with [Application Keys](/docs/api/applications/application-keys), to Migrate you will Create a new Application Key and remove the old key. |
| Application Key Regenerate | April 17, 2024 | July 17, 2024 | Regenerating API Keys for an Application has been replaced with [Application Keys](/docs/api/applications/application-keys), to Migrate you will Create a new Application Key and remove the old key. |

## Migrating From Privacy Settings

Expand Down
8 changes: 7 additions & 1 deletion docs/sdks/server-side/terraform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ terraform {
required_providers {
basistheory = {
source = "basis-theory/basistheory"
version = ">= 0.7.0"
version = ">= 2.0.0"
}
}
}
Expand All @@ -39,3 +39,9 @@ provider "basistheory" {
### Documentation

See the [official Basis Theory Terraform documentation](https://registry.terraform.io/providers/Basis-Theory/basistheory/latest/docs).

### Migration Guides

### V1 to V2 migration

You can find information on how to migrate in the [official Basis Theory Terraform documentation](https://registry.terraform.io/providers/Basis-Theory/basistheory/latest/docs/guides/migrating_from_v1_to_v2).
Loading