-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
executable file
·119 lines (96 loc) · 3.62 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
output "cluster_arn" {
value = aws_eks_cluster.main.arn
description = "The Amazon Resource Name (ARN) of the cluster."
}
output "cluster_certificate_authority" {
value = aws_eks_cluster.main.certificate_authority
description = "Nested attribute containing certificate-authority-data for your cluster."
}
output "cluster_endpoint" {
value = aws_eks_cluster.main.endpoint
description = "The endpoint for your Kubernetes API server."
}
output "cluster_id" {
value = aws_eks_cluster.main.id
description = "The name of the cluster."
}
output "cluster_identity" {
value = aws_eks_cluster.main.identity
description = "Nested attribute containing identity provider information for your cluster."
}
output "cluster_platform_version" {
value = aws_eks_cluster.main.platform_version
description = "The platform version for the cluster."
}
output "cluster_status" {
value = aws_eks_cluster.main.status
description = "The status of the EKS cluster. One of CREATING, ACTIVE, DELETING, FAILED."
}
output "cluster_version" {
value = aws_eks_cluster.main.version
description = "The Kubernetes server version for the cluster."
}
output "cluster_vpc_config" {
value = aws_eks_cluster.main.vpc_config
description = "The cluster security group that was created by Amazon EKS for the cluster. And, The VPC associated with your cluster."
}
output "cloudwatch_log_group" {
value = concat(aws_cloudwatch_log_group.main.*.arn, [""])[0]
description = "The Amazon Resource Name (ARN) specifying the log group."
}
output "iam_role_arn" {
value = concat(aws_iam_role.main.*.arn, [""])[0]
description = "The Amazon Resource Name (ARN) specifying the role."
}
output "iam_role_create_date" {
value = concat(aws_iam_role.main.*.create_date, [""])[0]
description = "The creation date of the IAM role."
}
output "iam_role_description" {
value = concat(aws_iam_role.main.*.description, [""])[0]
description = "The description of the role."
}
output "iam_role_id" {
value = concat(aws_iam_role.main.*.id, [""])[0]
description = "The name of the role."
}
output "iam_role_name" {
value = concat(aws_iam_role.main.*.name, [""])[0]
description = "The name of the role."
}
output "iam_role_unique_id" {
value = concat(aws_iam_role.main.*.unique_id, [""])[0]
description = "The stable and unique string identifying the role."
}
output "security_group_arn" {
value = concat(aws_security_group.main.*.arn, [""])[0]
description = "The ARN of the security group."
}
output "security_group_description" {
value = concat(aws_security_group.main.*.description, [""])[0]
description = "The description of the security group."
}
output "security_group_egress" {
value = concat(aws_security_group.main.*.egress, [])[0]
description = "The egress rules."
}
output "security_group_id" {
value = concat(aws_security_group.main.*.id, [""])[0]
description = "The ID of the security group."
}
output "security_group_ingress" {
value = concat(aws_security_group.main.*.ingress, [])[0]
description = "The ingress rules."
}
output "security_group_name" {
value = concat(aws_security_group.main.*.name, [""])[0]
description = "The name of the security group."
}
output "security_group_owner_id" {
value = concat(aws_security_group.main.*.owner_id, [""])[0]
description = "The owner ID."
}
output "security_group_vpc_id" {
value = concat(aws_security_group.main.*.vpc_id, [""])[0]
description = "The VPC ID."
}