-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
outputs.tf
47 lines (36 loc) · 826 Bytes
/
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
output "vpc_id" {
value = aws_vpc.vpc.id
}
output "private_subnet_ids" {
value = aws_subnet.private.*.id
}
output "private_route_table" {
value = aws_route_table.private.*.id
}
output "public_subnet_ids" {
value = aws_subnet.public.*.id
}
output "public_route_table" {
value = aws_route_table.public.*.id
}
output "node_role" {
value = aws_iam_role.node
}
output "node_security_group_id" {
value = aws_security_group.node.id
}
output "eks_cluster" {
value = aws_eks_cluster.cluster
}
output "eks_cluster_token" {
value = data.aws_eks_cluster_auth.cluster.token
}
output "eks_cluster_oidc_provider_arn" {
value = aws_iam_openid_connect_provider.cluster.arn
}
output "nat_gateway_ids" {
value = aws_nat_gateway.gw.*.id
}
output "internet_gateway_id" {
value = aws_internet_gateway.public.id
}