Skip to content

Commit

Permalink
fix reference to var
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinoMensio committed Feb 9, 2024
1 parent 79962a4 commit 496c959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3685,7 +3685,7 @@ module "aws_gateway_api_controller" {
# Bottlerocket Update Operator
################################################################################
locals {
wait_for_cert_manager = local.wait ? [module.cert_manager] : []
wait_for_cert_manager = try(var.cert_manager.wait, false) ? [module.cert_manager] : []
}

module "bottlerocket_shadow" {
Expand Down

0 comments on commit 496c959

Please sign in to comment.