Skip to content

Commit 07c6eca

Browse files
author
Adam Perry
committed
Examples versions.tf updated
1 parent a88f98f commit 07c6eca

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

examples/node/main.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# This example uses locals which were introduced in Terrform 0.10
2-
terraform {
3-
required_version = ">=0.10.4"
4-
}
5-
61
provider "aws" {
72
region = "eu-west-1"
83
}

examples/node/versions.tf

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11

22
terraform {
3-
required_version = ">= 0.12"
3+
required_version = ">= 0.12.20"
4+
required_providers {
5+
archive = {
6+
source = "hashicorp/archive"
7+
}
8+
aws = {
9+
source = "hashicorp/aws"
10+
}
11+
template = {
12+
source = "hashicorp/template"
13+
}
14+
}
415
}
Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11

22
terraform {
3-
required_version = ">= 0.12"
3+
required_version = ">= 0.12.20"
4+
required_providers {
5+
archive = {
6+
source = "hashicorp/archive"
7+
}
8+
aws = {
9+
source = "hashicorp/aws"
10+
}
11+
template = {
12+
source = "hashicorp/template"
13+
}
14+
}
415
}

0 commit comments

Comments
 (0)