File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
19
19
- Added support for initial lifecycle hooks for autosacling groups (@barryib )
20
20
- Added option to recreate ASG when LT or LC changes (by @barryib )
21
21
- Ability to specify workers role name (by @ivanich )
22
+ - Added output for OIDC Issuer URL (by @russwhelan )
22
23
- Added support for Mixed Instance ASG using ` worker_groups_launch_template ` variable (by @sppwf )
23
24
- Changed ASG Tags generation using terraform 12 ` for ` utility (by @sppwf )
24
25
- Removed ` worker_groups_launch_template_mixed ` variable (by @sppwf )
Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
168
168
| cluster\_id | The name/id of the EKS cluster. |
169
169
| cluster\_security\_group\_id | Security group ID attached to the EKS cluster. |
170
170
| cluster\_version | The Kubernetes server version for the EKS cluster. |
171
+ | cluster\_oidc\_issuer\_url | The URL on the EKS cluster OIDC Issuer. |
171
172
| config\_map\_aws\_auth | A kubernetes configuration to authenticate to this EKS cluster. |
172
173
| kubeconfig | kubectl config file contents for this EKS cluster. |
173
174
| kubeconfig\_filename | The filename of the generated kubectl config. |
Original file line number Diff line number Diff line change @@ -43,6 +43,11 @@ output "cluster_iam_role_arn" {
43
43
value = local. cluster_iam_role_arn
44
44
}
45
45
46
+ output "cluster_oidc_issuer_url" {
47
+ description = " The URL on the EKS cluster OIDC Issuer"
48
+ value = aws_eks_cluster. this . identity . 0 . oidc . 0 . issuer
49
+ }
50
+
46
51
output "cloudwatch_log_group_name" {
47
52
description = " Name of cloudwatch log group created"
48
53
value = aws_cloudwatch_log_group. this . * . name
You can’t perform that action at this time.
0 commit comments