diff --git a/example/cumulus-tf/modules/s3_access_test/main.tf b/example/cumulus-tf/modules/s3_access_test/main.tf index 2d87d1c7c0b..033cb4b9b60 100644 --- a/example/cumulus-tf/modules/s3_access_test/main.tf +++ b/example/cumulus-tf/modules/s3_access_test/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/example/lambdas/db-provision-user-database/main.tf b/example/lambdas/db-provision-user-database/main.tf index bff415c6dc8..e04ce05c0a9 100644 --- a/example/lambdas/db-provision-user-database/main.tf +++ b/example/lambdas/db-provision-user-database/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/example/rds-cluster-tf/main.tf b/example/rds-cluster-tf/main.tf index 10d6a33a2ce..d1b94922c80 100644 --- a/example/rds-cluster-tf/main.tf +++ b/example/rds-cluster-tf/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/packages/api/bin/serve.js b/packages/api/bin/serve.js index 3354d465108..efbf872ac89 100644 --- a/packages/api/bin/serve.js +++ b/packages/api/bin/serve.js @@ -300,7 +300,7 @@ async function eraseDynamoTables(stackName, systemBucket) { // Remove all data from tables const providerModel = new models.Provider(); - const collectionModel = new models.Collection(); + const collec tionModel = new models.Collection(); const rulesModel = new models.Rule(); const executionModel = new models.Execution(); const granulesModel = new models.Granule(); diff --git a/tf-modules/archive/main.tf b/tf-modules/archive/main.tf index c4b819dfcdb..1f79006c754 100644 --- a/tf-modules/archive/main.tf +++ b/tf-modules/archive/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/cumulus-message-adapter/main.tf b/tf-modules/cumulus-message-adapter/main.tf index b203e909680..8330111546d 100644 --- a/tf-modules/cumulus-message-adapter/main.tf +++ b/tf-modules/cumulus-message-adapter/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/cumulus/main.tf b/tf-modules/cumulus/main.tf index 490ff43c2a0..e79b4de255f 100644 --- a/tf-modules/cumulus/main.tf +++ b/tf-modules/cumulus/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/cumulus_ecs_service/main.tf b/tf-modules/cumulus_ecs_service/main.tf index 62bbe55678b..50698e204b1 100644 --- a/tf-modules/cumulus_ecs_service/main.tf +++ b/tf-modules/cumulus_ecs_service/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/data-persistence/main.tf b/tf-modules/data-persistence/main.tf index b9e5332c966..f86544c9cac 100644 --- a/tf-modules/data-persistence/main.tf +++ b/tf-modules/data-persistence/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" random = "~> 2.3" } } diff --git a/tf-modules/distribution/main.tf b/tf-modules/distribution/main.tf index d30703b9c94..622f1ab205d 100644 --- a/tf-modules/distribution/main.tf +++ b/tf-modules/distribution/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/ingest/main.tf b/tf-modules/ingest/main.tf index 1cb79ee5a09..df2e588bad1 100644 --- a/tf-modules/ingest/main.tf +++ b/tf-modules/ingest/main.tf @@ -1,5 +1,5 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/internal/cumulus-test-cleanup/main.tf b/tf-modules/internal/cumulus-test-cleanup/main.tf index ed686b2879c..d9eff7448d7 100644 --- a/tf-modules/internal/cumulus-test-cleanup/main.tf +++ b/tf-modules/internal/cumulus-test-cleanup/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/log-subscription-filter/main.tf b/tf-modules/log-subscription-filter/main.tf index 0c3810760cf..0f7a0398117 100644 --- a/tf-modules/log-subscription-filter/main.tf +++ b/tf-modules/log-subscription-filter/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/monitoring/cloudwatch-dashboard.tf b/tf-modules/monitoring/cloudwatch-dashboard.tf index b86556d922b..7b39599fe22 100644 --- a/tf-modules/monitoring/cloudwatch-dashboard.tf +++ b/tf-modules/monitoring/cloudwatch-dashboard.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/s3-replicator/main.tf b/tf-modules/s3-replicator/main.tf index 25875b0d12e..463a3dfc6e4 100644 --- a/tf-modules/s3-replicator/main.tf +++ b/tf-modules/s3-replicator/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } diff --git a/tf-modules/tea-map-cache/main.tf b/tf-modules/tea-map-cache/main.tf index eb4d1f265da..ccefbb7c5ed 100644 --- a/tf-modules/tea-map-cache/main.tf +++ b/tf-modules/tea-map-cache/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } } resource "aws_lambda_function" "tea_cache" { diff --git a/tf-modules/workflow/main.tf b/tf-modules/workflow/main.tf index b965f812785..345168efb91 100644 --- a/tf-modules/workflow/main.tf +++ b/tf-modules/workflow/main.tf @@ -1,6 +1,6 @@ terraform { required_providers { - aws = ">= 2.31.0" + aws = "~> 3.0,!= 3.14.0" } }