Skip to content

Commit 9b1b378

Browse files
committed
chore: update universal-addon module references to v0.0.18 and adjust dependencies
1 parent 0fa1117 commit 9b1b378

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

.templatesyncignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ README.md
66
.secrets.baseline
77
.github/workflows/renovate.yaml
88
renovate.json
9-
addon.tf
109
addon-oidc.tf
1110
variables-addon-oidc.tf

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ See [basic example](examples/basic) for further information.
5050

5151
| Name | Source | Version |
5252
|------|--------|---------|
53-
| <a name="module_addon"></a> [addon](#module\_addon) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon | v0.0.17 |
54-
| <a name="module_addon-irsa"></a> [addon-irsa](#module\_addon-irsa) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa | v0.0.17 |
53+
| <a name="module_addon"></a> [addon](#module\_addon) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon | v0.0.18 |
54+
| <a name="module_addon-irsa"></a> [addon-irsa](#module\_addon-irsa) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa | v0.0.18 |
5555
## Resources
5656

5757
| Name | Type |
@@ -179,8 +179,8 @@ See [basic example](examples/basic) for further information.
179179
| <a name="input_server_service_account_create"></a> [server\_service\_account\_create](#input\_server\_service\_account\_create) | Set to false to prevent the ArgoCD Server Service Account from being created. | `bool` |
180180
| <a name="input_server_service_account_name"></a> [server\_service\_account\_name](#input\_server\_service\_account\_name) | Name of the ArgoCD Server Service Account. | `string` |
181181
| <a name="input_service_account_create"></a> [service\_account\_create](#input\_service\_account\_create) | Whether to create Service Account. Defaults to `true`. | `bool` |
182-
| <a name="input_service_account_name"></a> [service\_account\_name](#input\_service\_account\_name) | The Kubernetes Service Account name. Defaults to the addon name. Defaults to `""`. | `string` |
183-
| <a name="input_service_account_namespace"></a> [service\_account\_namespace](#input\_service\_account\_namespace) | The Kubernetes Service Account namespace. Defaults to the addon namespace. Defaults to `""`. | `string` |
182+
| <a name="input_service_account_name"></a> [service\_account\_name](#input\_service\_account\_name) | The Kubernetes Service Account name. Defaults to `""`. | `string` |
183+
| <a name="input_service_account_namespace"></a> [service\_account\_namespace](#input\_service\_account\_namespace) | The Kubernetes Service Account namespace. Defaults to `""`. | `string` |
184184
| <a name="input_settings"></a> [settings](#input\_settings) | Additional Helm sets which will be passed to the Helm chart values or Kustomize or directory configuration which will be passed to ArgoCD Application source. Defaults to `{}`. | `map(any)` |
185185
| <a name="input_values"></a> [values](#input\_values) | Additional YAML encoded values which will be passed to the Helm chart. Defaults to `""`. | `string` |
186186
## Outputs

addon-irsa.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module "addon-irsa" {
33
for_each = local.addon_irsa
44

5-
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.17"
5+
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.18"
66

77
enabled = var.enabled
88

addon.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ locals {
1111
}
1212

1313
module "addon" {
14-
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon?ref=v0.0.17"
14+
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon?ref=v0.0.18"
1515

1616
enabled = var.enabled
1717

@@ -86,7 +86,7 @@ module "addon" {
8686
values = one(data.utils_deep_merge_yaml.values[*].output)
8787

8888
depends_on = [
89-
helm_release.self_managed
89+
local.addon_depends_on
9090
]
9191
}
9292

main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,8 @@ locals {
117117
}
118118
}
119119
})
120+
121+
addon_depends_on = [
122+
helm_release.self_managed
123+
]
120124
}

variables-addon-irsa.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ variable "service_account_create" {
2727
variable "service_account_name" {
2828
type = string
2929
default = null
30-
description = "The Kubernetes Service Account name. Defaults to the addon name. Defaults to `\"\"`."
30+
description = "The Kubernetes Service Account name. Defaults to `\"\"`."
3131
}
3232

3333
variable "service_account_namespace" {
3434
type = string
3535
default = null
36-
description = "The Kubernetes Service Account namespace. Defaults to the addon namespace. Defaults to `\"\"`."
36+
description = "The Kubernetes Service Account namespace. Defaults to `\"\"`."
3737
}
3838

3939
variable "irsa_role_create" {

0 commit comments

Comments
 (0)