-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoutputs.tf
72 lines (59 loc) · 2.35 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
output "id" {
description = "The ID of the EKS add-on."
value = aws_eks_addon.this.id
}
output "arn" {
description = "The ARN of the EKS add-on."
value = aws_eks_addon.this.arn
}
output "cluster_name" {
description = "The name of the EKS cluster."
value = aws_eks_addon.this.cluster_name
}
output "name" {
description = "The name of the EKS add-on."
value = aws_eks_addon.this.addon_name
}
output "version" {
description = "The version of the EKS add-on."
value = aws_eks_addon.this.addon_version
}
output "default_version" {
description = "The default version of the EKS add-on compatible with the EKS cluster version."
value = data.aws_eks_addon_version.default.version
}
output "latest_version" {
description = "The latest version of the EKS add-on compatible with the EKS cluster version."
value = data.aws_eks_addon_version.latest.version
}
output "is_latest" {
description = "Whether the EKS add-on version is the latest available."
value = aws_eks_addon.this.addon_version == data.aws_eks_addon_version.latest.version
}
output "service_account_role" {
description = "The ARN (Amazon Resource Name) of the IAM Role to bind to the add-on's service account"
value = aws_eks_addon.this.service_account_role_arn
}
output "conflict_resolution_strategy_on_create" {
description = "How to resolve field value conflicts when migrating a self-managed add-on to an EKS add-on."
value = aws_eks_addon.this.resolve_conflicts_on_create
}
output "conflict_resolution_strategy_on_update" {
description = "How to resolve field value conflicts for an EKS add-on if you've changed a value from the EKS default value."
value = aws_eks_addon.this.resolve_conflicts_on_update
}
output "created_at" {
description = "Date and time in RFC3339 format that the EKS add-on was created."
value = aws_eks_addon.this.created_at
}
output "updated_at" {
description = "Date and time in RFC3339 format that the EKS add-on was updated."
value = aws_eks_addon.this.modified_at
}
# output "debug" {
# value = {
# for k, v in aws_eks_addon.this :
# k => v
# if !contains(["id", "arn", "cluster_name", "addon_name", "addon_version", "service_account_role_arn", "resolve_conflicts_on_create", "resolve_conflicts_on_update", "created_at", "modified_at", "tags", "tags_all"], k)
# }
# }