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
Copy file name to clipboardExpand all lines: modules/karpenter/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,6 +168,7 @@ No modules.
168
168
| <aname="input_irsa_ssm_parameter_arns"></a> [irsa\_ssm\_parameter\_arns](#input\_irsa\_ssm\_parameter\_arns)| List of SSM Parameter ARNs that contain AMI IDs launched by Karpenter |`list(string)`| <pre>[<br> "arn:aws:ssm:*:*:parameter/aws/service/*"<br>]</pre> | no |
169
169
| <aname="input_irsa_subnet_account_id"></a> [irsa\_subnet\_account\_id](#input\_irsa\_subnet\_account\_id)| Account ID of where the subnets Karpenter will utilize resides. Used when subnets are shared from another account |`string`|`""`| no |
170
170
| <aname="input_irsa_tag_key"></a> [irsa\_tag\_key](#input\_irsa\_tag\_key)| Tag key (`{key = value}`) applied to resources launched by Karpenter through the Karpenter provisioner |`string`|`"karpenter.sh/discovery"`| no |
171
+
| <aname="input_irsa_tag_values"></a> [irsa\_tag\_values](#input\_irsa\_tag\_values)| Tag values (`{key = value}`) applied to resources launched by Karpenter through the Karpenter provisioner. Defaults to cluster name when not set. |`list(string)`|`null`| no |
171
172
| <aname="input_irsa_tags"></a> [irsa\_tags](#input\_irsa\_tags)| A map of additional tags to add the the IAM role for service accounts |`map(any)`|`{}`| no |
172
173
| <aname="input_irsa_use_name_prefix"></a> [irsa\_use\_name\_prefix](#input\_irsa\_use\_name\_prefix)| Determines whether the IAM role for service accounts name (`irsa_name`) is used as a prefix |`bool`|`true`| no |
173
174
| <aname="input_policies"></a> [policies](#input\_policies)| Policies to attach to the IAM role in `{'static_name' = 'policy_arn'}` format |`map(string)`|`{}`| no |
Copy file name to clipboardExpand all lines: modules/karpenter/variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,12 @@ variable "irsa_tag_key" {
86
86
default="karpenter.sh/discovery"
87
87
}
88
88
89
+
variable"irsa_tag_values" {
90
+
description="Tag values (`{key = value}`) applied to resources launched by Karpenter through the Karpenter provisioner. Defaults to cluster name when not set."
91
+
type=list(string)
92
+
default=null
93
+
}
94
+
89
95
variable"irsa_ssm_parameter_arns" {
90
96
description="List of SSM Parameter ARNs that contain AMI IDs launched by Karpenter"
0 commit comments