Skip to content

Commit

Permalink
feat(irsa): Align IRSA variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Balsir committed Dec 5, 2024
1 parent 62b5395 commit 1e94607
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions modules/addon-irsa/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/addon-irsa/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
output "irsa_role_enabled" {
description = "Whether is IRSA role enabled"
description = "Whether IRSA role is enabled"
value = local.irsa_role_create
}

Expand Down
4 changes: 2 additions & 2 deletions modules/addon-irsa/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ variable "irsa_tags" {

variable "irsa_assume_role_policy_condition_test" {
type = string
default = "StringEquals"
default = null
description = "Specifies the condition test to use for the assume role trust policy. Defaults to `StringEquals`."
}

variable "irsa_assume_role_policy_condition_values" {
type = list(string)
default = []
default = null
description = "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."
}

0 comments on commit 1e94607

Please sign in to comment.