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
modules/app_engine/variables.tf currently defines feature_settings as a generic list with a default of [{ enabled = true }]. The type should be updated to list(object{ split_health_checks = bool }) since feature_settings can only be defined once on google_app_engine_application and split_health_checks is the only valid argument. The default should be updated to { split_health_checks = true} since false enables legacy health checks.
@bharathkkb I incorrectly specified a type of list(object{ split_health_checks = bool }) when it should have been object{ split_health_checks = bool} as feature_settings can only be specified once. Can you make the necessary change?
modules/app_engine/variables.tf
currently definesfeature_settings
as a genericlist
with a default of[{ enabled = true }]
. The type should be updated tolist(object{ split_health_checks = bool })
sincefeature_settings
can only be defined once ongoogle_app_engine_application
andsplit_health_checks
is the only valid argument. The default should be updated to{ split_health_checks = true}
sincefalse
enables legacy health checks.https://www.terraform.io/docs/providers/google/r/app_engine_application.html#feature_settings
The text was updated successfully, but these errors were encountered: