You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -132,12 +132,12 @@ See [basic example](examples/basic) for further information.
132
132
| <aname="input_helm_wait_for_jobs"></a> [helm\_wait\_for\_jobs](#input\_helm\_wait\_for\_jobs)| If wait is enabled, will wait until all Helm Jobs have been completed before marking the release as successful. It will wait for as long as timeout. Defaults to `false`. |`bool`|
133
133
| <aname="input_irsa_additional_policies"></a> [irsa\_additional\_policies](#input\_irsa\_additional\_policies)| Map of the additional policies to be attached to IRSA role. Where key is arbitrary id and value is policy ARN. Defaults to `{}`. |`map(string)`|
134
134
| <aname="input_irsa_assume_role_arns"></a> [irsa\_assume\_role\_arns](#input\_irsa\_assume\_role\_arns)| List of ARNs assumable by the IRSA role. Applied only if `irsa_assume_role_enabled` is `true`. Defaults to `[]`. |`list(string)`|
135
-
| <aname="input_irsa_assume_role_enabled"></a> [irsa\_assume\_role\_enabled](#input\_irsa\_assume\_role\_enabled)| Whether IRSA is allowed to assume role defined by `irsa_assume_role_arn`. Mutually exclusive with `irsa_policy_enabled`. Defaults to `false`. |`bool`|
135
+
| <aname="input_irsa_assume_role_enabled"></a> [irsa\_assume\_role\_enabled](#input\_irsa\_assume\_role\_enabled)| Whether IRSA is allowed to assume role defined by `irsa_assume_role_arn`. Defaults to `false`. |`bool`|
136
136
| <aname="input_irsa_assume_role_policy_condition_test"></a> [irsa\_assume\_role\_policy\_condition\_test](#input\_irsa\_assume\_role\_policy\_condition\_test)| Specifies the condition test to use for the assume role trust policy. Defaults to `StringEquals`. |`string`|
137
137
| <aname="input_irsa_assume_role_policy_condition_values"></a> [irsa\_assume\_role\_policy\_condition\_values](#input\_irsa\_assume\_role\_policy\_condition\_values)| Specifies the values for the assume role trust policy condition. Each entry in this list must follow the required format `system:serviceaccount:$service_account_namespace:$service_account_name`. If this variable is left as the default, `local.irsa_assume_role_policy_condition_values_default` is used instead, which is a list containing a single value. Note that if this list is defined, the `service_account_name` and `service_account_namespace` variables are ignored. Defaults to `[]`. |`list(string)`|
138
138
| <aname="input_irsa_permissions_boundary"></a> [irsa\_permissions\_boundary](#input\_irsa\_permissions\_boundary)| ARN of the policy that is used to set the permissions boundary for the IRSA role. Defaults to `null`. |`string`|
139
139
| <aname="input_irsa_policy"></a> [irsa\_policy](#input\_irsa\_policy)| AWS IAM policy JSON document to be attached to the IRSA role. Applied only if `irsa_policy_enabled` is `true`. Defaults to `""`. |`string`|
140
-
| <aname="input_irsa_policy_enabled"></a> [irsa\_policy\_enabled](#input\_irsa\_policy\_enabled)| Whether to create IAM policy specified by `irsa_policy`. Mutually exclusive with `irsa_assume_role_enabled`. Defaults to `false`. |`bool`|
140
+
| <aname="input_irsa_policy_enabled"></a> [irsa\_policy\_enabled](#input\_irsa\_policy\_enabled)| Whether to create IAM policy specified by `irsa_policy`. Defaults to `false`. |`bool`|
141
141
| <aname="input_irsa_role_create"></a> [irsa\_role\_create](#input\_irsa\_role\_create)| Whether to create IRSA role and annotate Service Account. Defaults to `true`. |`bool`|
142
142
| <aname="input_irsa_role_name"></a> [irsa\_role\_name](#input\_irsa\_role\_name)| IRSA role name. The value is prefixed by `irsa_role_name_prefix`. Either `irsa_role_name` or `irsa_role_name_prefix` must be set. Defaults to `""`. |`string`|
143
143
| <aname="input_irsa_role_name_prefix"></a> [irsa\_role\_name\_prefix](#input\_irsa\_role\_name\_prefix)| IRSA role name prefix. Either `irsa_role_name_prefix` or `irsa_role_name` must be set. Defaults to `""`. |`string`|
@@ -162,7 +162,7 @@ See [basic example](examples/basic) for further information.
162
162
| Name | Description |
163
163
|------|-------------|
164
164
| <aname="output_addon"></a> [addon](#output\_addon)| The addon module outputs |
165
-
| <aname="output_addon_irsa"></a> [addon\_irsa](#output\_addon\_irsa)| The addon IRSA module outputs |
165
+
| <aname="output_addon_irsa"></a> [addon\_irsa](#output\_addon\_irsa)| The IRSA addon module outputs |
166
166
## Contributing and reporting issues
167
167
168
168
Feel free to create an issue in this repository if you have questions, suggestions or feature requests.
Copy file name to clipboardExpand all lines: addon.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# IMPORTANT: This file is synced with the "terraform-aws-eks-universal-addon" module. Any changes to this file might be overwritten upon the next release of that module.
Copy file name to clipboardExpand all lines: variables-addon-irsa.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ variable "irsa_role_name" {
57
57
variable"irsa_policy_enabled" {
58
58
type=bool
59
59
default=null
60
-
description="Whether to create IAM policy specified by `irsa_policy`. Mutually exclusive with `irsa_assume_role_enabled`. Defaults to `false`."
60
+
description="Whether to create IAM policy specified by `irsa_policy`. Defaults to `false`."
61
61
}
62
62
63
63
variable"irsa_policy" {
@@ -69,7 +69,7 @@ variable "irsa_policy" {
69
69
variable"irsa_assume_role_enabled" {
70
70
type=bool
71
71
default=null
72
-
description="Whether IRSA is allowed to assume role defined by `irsa_assume_role_arn`. Mutually exclusive with `irsa_policy_enabled`. Defaults to `false`."
72
+
description="Whether IRSA is allowed to assume role defined by `irsa_assume_role_arn`. Defaults to `false`."
0 commit comments