Skip to content

Commit aa69604

Browse files
committed
moving version to seperate file
1 parent f4b7752 commit aa69604

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

main.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,3 @@ provider "aws" {
1616
profile = var.profile_to_use
1717
version = "~> 2.61"
1818
}
19-
20-
terraform {
21-
required_version = ">= 0.12"
22-
}

version.tf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
terraform {
2+
required_version = ">= 0.14"
3+
required_providers {
4+
aws = {
5+
version = "3.29"
6+
}
7+
}
8+
}
9+
10+
provider "aws" {
11+
region = var.aws_region
12+
profile = var.profile_to_use
13+
}

0 commit comments

Comments
 (0)