Skip to content

Commit e1fdb4f

Browse files
committed
Add initial Terraform configuration with required providers
1 parent 016e6d7 commit e1fdb4f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Terraform/0-versions.tf

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
terraform {
2+
required_version = ">= 1.4.0"
3+
required_providers {
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = "~> 5.0"
7+
}
8+
helm = {
9+
source = "hashicorp/helm"
10+
version = "~> 2.12"
11+
}
12+
kubernetes = {
13+
source = "hashicorp/kubernetes"
14+
version = "~> 2.25"
15+
}
16+
time = {
17+
source = "hashicorp/time"
18+
version = "~> 0.9"
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)