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
The health_check defined for each backend was made optional in version 11.0 HOWEVER the module still attempts to create a google_compute_firewall rule for the non existent health_check.
The google_compute_firewall rule fails to be created as the google_compute_firewall dynamic allow block relies on the health_check being specified. As the health check is missing, this leads to error Error: Invalid combination of arguments. "deny": one of "allow,deny" must be specified.
Expected behavior
Do not attempt to create a health check related firewall rule if the optional health_check is not defined.
Observed behavior
Module attempts to create a firewall rule for a non defined backend health_check leading to error Error: Invalid combination of arguments. "deny": one of "allow,deny" must be specified.
TL;DR
The
health_check
defined for each backend was made optional in version 11.0 HOWEVER the module still attempts to create agoogle_compute_firewall
rule for the non existenthealth_check
.The
google_compute_firewall
rule fails to be created as thegoogle_compute_firewall
dynamicallow
block relies on thehealth_check
being specified. As the health check is missing, this leads to errorError: Invalid combination of arguments. "deny": one of "allow,deny" must be specified
.Expected behavior
Do not attempt to create a health check related firewall rule if the optional
health_check
is not defined.Observed behavior
Module attempts to create a firewall rule for a non defined backend
health_check
leading to errorError: Invalid combination of arguments. "deny": one of "allow,deny" must be specified
.Terraform Configuration
Terraform Version
Additional information
No response
The text was updated successfully, but these errors were encountered: