Skip to content

Commit

Permalink
Merge pull request #39 from ministryofjustice/tf-0.13
Browse files Browse the repository at this point in the history
Terraform 0.13 upgrade for repository
  • Loading branch information
jasonBirchall authored Feb 23, 2021
2 parents 1a96b87 + 595fa6d commit bbac4ee
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
10 changes: 9 additions & 1 deletion example/versions.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

terraform {
required_version = ">= 0.12"
required_version = ">= 0.13"
required_providers {
aws = {
source = "hashicorp/aws"
}
kubernetes = {
source = "hashicorp/kubernetes"
}
}
}
8 changes: 8 additions & 0 deletions test/unit-test/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
}
}
required_version = ">= 0.13"
}
14 changes: 14 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
}
random = {
source = "hashicorp/random"
}
template = {
source = "hashicorp/template"
}
}
required_version = ">= 0.13"
}

0 comments on commit bbac4ee

Please sign in to comment.