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
After upgrading to the changes in #41 (v0.19.0) with enabled = false running this module results in getting an error:
╷
│ Error: Error in function call
│
│ on .terraform/modules/ses/main.tf line 45, in locals:
│ 45: ses_group_name = coalesce(var.ses_group_name, module.this.id)
│ ├────────────────
│ │ module.this.id is ""
│ │ var.ses_group_name is ""
│
│ Call to function "coalesce" failed: no non-null, non-empty-string
│ arguments.
It seems that the enabled is not adhered in this particular calculation.
Expected Behavior
No error, since the module is not enabled nothing should be created/generated.
Steps to Reproduce
Steps to reproduce the behavior:
Set enabled = false
Error shown
The text was updated successfully, but these errors were encountered:
Describe the Bug
After upgrading to the changes in #41 (
v0.19.0
) withenabled = false
running this module results in getting an error:It seems that the
enabled
is not adhered in this particular calculation.Expected Behavior
No error, since the module is not enabled nothing should be created/generated.
Steps to Reproduce
Steps to reproduce the behavior:
enabled = false
The text was updated successfully, but these errors were encountered: