Skip to content

Commit

Permalink
* 2.3.4 -- 2024-10-11
Browse files Browse the repository at this point in the history
  - enable import_to_acm for common-services certificate
  • Loading branch information
badra001 committed Oct 11, 2024
1 parent 7da0e4a commit 6bb576a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,6 @@

* 2.3.3 -- 2024-10-11
- update addons as of 2024-10-11

* 2.3.4 -- 2024-10-11
- enable import_to_acm for common-services certificate
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "2.3.3"
_module_version = "2.3.4"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module "subordinate_ca" {

cluster_name = var.cluster_name
contact_email = var.contact_email
import_to_acm = true

tags = merge(
local.base_tags,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
image_config = [ for k, v in local.images_settings : v if (v.enabled && k != "cluster-autoscaler") ]
image_config = [for k, v in local.images_settings : v if(v.enabled && k != "cluster-autoscaler")]
image_output = { for k, v in module.images.images : v.name => v }

charts = { for k, v in local.chart_settings : k => v if try(v.enabled, true) }
Expand Down

0 comments on commit 6bb576a

Please sign in to comment.