Skip to content

Commit

Permalink
Added aws_iam_openid_connect_provider.cluster.arn to outputs.tf (#413)
Browse files Browse the repository at this point in the history
* Added aws_iam_openid_connect_provider.cluster.arn to outputs.tf

* Updated README
  • Loading branch information
ethangamma24 authored Aug 26, 2024
1 parent 8f65bf7 commit 0af9fcd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ the PSP to the [equivalent new standard](https://kubernetes.io/docs/tasks/config
|------|-------------|
| <a name="output_eks_cluster"></a> [eks\_cluster](#output\_eks\_cluster) | n/a |
| <a name="output_eks_cluster_token"></a> [eks\_cluster\_token](#output\_eks\_cluster\_token) | n/a |
| <a name="output_eks_cluster_oidc_provider_arn"></a> [eks\_cluster\_oidc\_provider\_arn](#output\_eks\_cluster\_oidc\_provider\_arn) | n/a |
| <a name="output_internet_gateway_id"></a> [internet\_gateway\_id](#output\_internet\_gateway\_id) | n/a |
| <a name="output_nat_gateway_ids"></a> [nat\_gateway\_ids](#output\_nat\_gateway\_ids) | n/a |
| <a name="output_node_role"></a> [node\_role](#output\_node\_role) | n/a |
Expand Down
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ 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
}
Expand Down

0 comments on commit 0af9fcd

Please sign in to comment.