Skip to content

Commit

Permalink
feat: update module versions to 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jaygridley committed Aug 19, 2024
1 parent 571943b commit f1111b1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ See [basic example](examples/basic) for further information.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_addon"></a> [addon](#module\_addon) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon | v0.0.4 |
| <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.5 |
| <a name="module_addon"></a> [addon](#module\_addon) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon | v0.0.6 |
| <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.6 |
## Resources

| Name | Type |
Expand Down
2 changes: 1 addition & 1 deletion addon-irsa.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module "addon-irsa" {
for_each = local.addon_irsa

source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.5"
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.6"

enabled = var.enabled

Expand Down
4 changes: 2 additions & 2 deletions addon.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ locals {
}

module "addon" {
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon?ref=v0.0.4"
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon?ref=v0.0.6"

enabled = var.enabled

Expand Down Expand Up @@ -75,7 +75,7 @@ data "utils_deep_merge_yaml" "values" {
count = var.enabled ? 1 : 0

input = compact([
try(local.addon_values, ""),
local.addon_values,
var.values
])
}
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ locals {
}

addon_values = yamlencode({
# FIXME config: add default values here or remove if not needed
# FIXME config: add default values here
})
}

0 comments on commit f1111b1

Please sign in to comment.