-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
64 lines (49 loc) · 1.18 KB
/
outputs.tf
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
output "irsa_role_arn" {
value = module.aws-lb-controller-role.iam_role_arn
}
output "vpc_id" {
value = module.vpc.vpc_id
}
output "private_subnets" {
value = module.vpc.private_subnets
}
output "public_subnets" {
value = module.vpc.public_subnets
}
output "vpc_cidr_block" {
value = module.vpc.vpc_cidr_block
}
output "nat_public_ips" {
value = module.vpc.nat_public_ips
}
output "cluster_oidc_issuer_url" {
value = module.eks.cluster_oidc_issuer_url
}
output "cluster_iam_role_arn" {
value = module.eks.cluster_iam_role_arn
}
output "worker_iam_role_arn" {
value = module.eks.worker_iam_role_arn
}
output "worker_iam_role_name" {
value = module.eks.worker_iam_role_name
}
output "velero_backeup_s3_bucket_arn" {
value = module.s3_bucket_velero_backup.s3_bucket_arn
}
output "cluster_arn" {
value = module.eks.cluster_arn
}
output "cluser_admin_iam_role_arn" {
value = aws_iam_role.cluster_admin.arn
}
output "eso_role_arn" {
value = module.aws_kubernetes_eso_role.iam_role_arn
}
output "loki_role_arn" {
value = module.aws_loki_role.iam_role_arn
}
## Applications
output "graffiti_server_role_arn" {
value = module.aws_graffiti_server_role.iam_role_arn
}