-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf.example
More file actions
67 lines (57 loc) · 1.42 KB
/
versions.tf.example
File metadata and controls
67 lines (57 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File auto-generated by command:
# bin/make-example \
# versions \
# eks \
# all \
# v2.2.6 \
# modules/eks/cert-manager/versions.tf \
# modules/eks/ecr-credentials-sync/versions.tf \
# modules/eks/eks/versions.tf \
# modules/eks/external-dns/versions.tf \
# modules/eks/external-secrets-operator/versions.tf \
# modules/eks/flux/versions.tf \
# modules/eks/loki/versions.tf \
# modules/eks/opencost/versions.tf \
# modules/eks/rds/versions.tf \
# modules/eks/tempo/versions.tf \
# modules/eks/velero/versions.tf \
# modules/eks/vpc_peering/versions.tf
terraform {
required_version = "~> 1.12"
# Source: examples/eks/backend.txt
backend "s3" {
bucket = "-- DEFINE BUCKET NAME HERE --"
key = "-- DEFINE KEY PREFIX HERE --/terraform.tfstate"
region = "-- DEFINE BUCKET REGION HERE --"
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.34"
}
flux = {
source = "fluxcd/flux"
version = "~> 1.2"
}
github = {
source = "integrations/github"
version = "~> 5.18"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.7"
}
kubectl = {
source = "alekc/kubectl"
version = "~> 2.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.10"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
}
}
}