-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INTMDB-183: Migrate to TF SDK 2 (#489)
* initial migrate sdk v2 * refactor: deleted maxitems for datasource because it's bad practice for make test * refactor: changed typemap to typelist for datasource and resources because it's bad practice for make test and not supported in sdk v2 * refactor: changed Provider to ProviderFactories in tests * updated name of funcs for sdk v2 * refactor: changed Provider to ProviderFactories in tests * refactor: get the old fields of typemap because of possibly of future issues related to state * docs: updated upgrade guide for migration * fixes bug * fixes linter * fixes linter * fixes linter * fixes bug for restore job * fixes bug * refactor: changed create without timeout to normal * refactor: changed to context without timeout for cluster resource since it can take a while usually depending of the case * fix: fixes some testacc * fixes linter * docs: updated changes suggested by melissa * refactor: made changes suggested by tony * migrated event triggers * fix: random error related to client * fixes import for search Co-authored-by: Edgar Lopez <[email protected]>
- Loading branch information
Showing
173 changed files
with
3,830 additions
and
2,569 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
module github.com/mongodb/terraform-provider-mongodbatlas | ||
|
||
go 1.14 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/client9/misspell v0.3.4 | ||
github.com/go-test/deep v1.0.7 | ||
github.com/gruntwork-io/terratest v0.32.20 | ||
github.com/hashicorp/terraform-plugin-sdk v1.14.0 | ||
github.com/hashicorp/hcl/v2 v2.10.0 // indirect | ||
github.com/hashicorp/terraform-plugin-sdk/v2 v2.7.0 | ||
github.com/hashicorp/terraform-provider-google v1.20.1-0.20210625223728-379bcb41c06b | ||
github.com/mongodb-forks/digest v1.0.1 | ||
github.com/mwielbut/pointy v1.1.0 | ||
github.com/spf13/cast v1.3.1 | ||
github.com/terraform-providers/terraform-provider-aws v1.60.1-0.20200518153306-40099de47e37 | ||
github.com/terraform-providers/terraform-provider-google v1.20.1-0.20200518165017-1dd21651c496 | ||
github.com/terraform-providers/terraform-provider-aws v1.60.1-0.20210625132053-af2d5c0ad54f | ||
go.mongodb.org/atlas v0.10.0 | ||
go.mongodb.org/realm v0.0.0-20210618220639-e70c919266f2 | ||
) |
Oops, something went wrong.