Skip to content

Commit

Permalink
Update terraform to not use broken version:
Browse files Browse the repository at this point in the history
  • Loading branch information
Jkovarik committed Nov 6, 2020
1 parent c64db89 commit d7befd2
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion example/cumulus-tf/modules/s3_access_test/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion example/lambdas/db-provision-user-database/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion example/rds-cluster-tf/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/api/bin/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion tf-modules/archive/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/cumulus-message-adapter/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/cumulus/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/cumulus_ecs_service/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/data-persistence/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
random = "~> 2.3"
}
}
2 changes: 1 addition & 1 deletion tf-modules/distribution/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/ingest/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}
2 changes: 1 addition & 1 deletion tf-modules/internal/cumulus-test-cleanup/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/log-subscription-filter/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/monitoring/cloudwatch-dashboard.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/s3-replicator/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tf-modules/tea-map-cache/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}
resource "aws_lambda_function" "tea_cache" {
Expand Down
2 changes: 1 addition & 1 deletion tf-modules/workflow/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
required_providers {
aws = ">= 2.31.0"
aws = "~> 3.0,!= 3.14.0"
}
}

Expand Down

0 comments on commit d7befd2

Please sign in to comment.