proxy_fastly: max/min typo

This commit is contained in:
Iain Learmonth 2022-06-24 10:35:14 +01:00
parent 8d949caa1a
commit e1b498628d

View file

@ -11,7 +11,7 @@ class ProxyFastlyAutomation(ProxyAutomation):
short_name = "proxy_fastly"
description = "Deploy proxies to Fastly"
provider = "fastly"
subgroup_max = max(current_app.config.get("FASTLY_MAX_BACKENDS", 5), 20)
subgroup_max = min(current_app.config.get("FASTLY_MAX_BACKENDS", 5), 20)
template_parameters = [
"aws_access_key",