Skip to content

Commit 95ccbf6

Browse files
committed
Set provider version requirements
1 parent e54e40a commit 95ccbf6

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = ">= 4.59"
6+
}
7+
}
8+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = ">= 4.57"
6+
}
7+
kubernetes = {
8+
source = "hashicorp/kubernetes"
9+
version = ">= 2.10"
10+
}
11+
}
12+
}

comet-infrastructure/versions.tf

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.47"
7+
version = "~>= 5.1"
8+
}
9+
kubernetes = {
10+
source = "hashicorp/kubernetes"
11+
version = "~> 2.21"
12+
}
13+
helm = {
14+
source = "hashicorp/helm"
15+
version = "~>2.10"
816
}
917
}
1018
}

0 commit comments

Comments
 (0)