Skip to content

Commit 4102005

Browse files
readme:
1 parent 366fe26 commit 4102005

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
88
<a name="unreleased"></a>
99
## [Unreleased]
1010

11+
- Allow users to add more audiences to the open id connect provider
1112

1213

1314
<a name="v17.1.0"></a>

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ Apache 2 Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraf
262262
| <a name="input_map_users"></a> [map\_users](#input\_map\_users) | Additional IAM users to add to the aws-auth configmap. See examples/basic/variables.tf for example format. | <pre>list(object({<br> userarn = string<br> username = string<br> groups = list(string)<br> }))</pre> | `[]` | no |
263263
| <a name="input_node_groups"></a> [node\_groups](#input\_node\_groups) | Map of map of node groups to create. See `node_groups` module's documentation for more details | `any` | `{}` | no |
264264
| <a name="input_node_groups_defaults"></a> [node\_groups\_defaults](#input\_node\_groups\_defaults) | Map of values to be applied to all node groups. See `node_groups` module's documentation for more details | `any` | `{}` | no |
265+
| <a name="input_openid_connect_audiences"></a> [openid\_connect\_audiences](#input\_openid\_connect\_audiences) | List of OpenID Connect audience client IDs to add to the IRSA provider. | `list(string)` | `[]` | no |
265266
| <a name="input_permissions_boundary"></a> [permissions\_boundary](#input\_permissions\_boundary) | If provided, all IAM roles will be created with this permissions boundary attached. | `string` | `null` | no |
266267
| <a name="input_subnets"></a> [subnets](#input\_subnets) | A list of subnets to place the EKS cluster and workers within. | `list(string)` | n/a | yes |
267268
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources. Tags added to launch configuration or templates override these values for ASG Tags only. | `map(string)` | `{}` | no |

variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ variable "wait_for_cluster_timeout" {
395395
}
396396

397397
variable "openid_connect_audiences" {
398-
description = "OpenID Connect audience client IDs to add to the IRSA provider."
398+
description = "List of OpenID Connect audience client IDs to add to the IRSA provider."
399399
type = list(string)
400-
default = null
400+
default = []
401401
}

0 commit comments

Comments
 (0)