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 Cloud Run module contains a logic error if var.vpc_connector.create == false. The ternary operator is backwards, always going down the create branch if create is false.
A fix would be to either swap the true and false statements, or even simpler, just add a == false.
The Cloud Run module contains a logic error if
var.vpc_connector.create == false
. The ternary operator is backwards, always going down the create branch if create is false.A fix would be to either swap the true and false statements, or even simpler, just add a
== false
.cloud-foundation-fabric/modules/cloud-run/main.tf
Line 32 in e21a0f7
Resolution: Change line to
try(var.vpc_connector.create, false) == false
The text was updated successfully, but these errors were encountered: