From a4a47bdc49c9991e2d3654538167f475c36963ff Mon Sep 17 00:00:00 2001 From: Bruno Eduardo Zamariola Date: Thu, 13 Jul 2023 18:45:50 -0300 Subject: [PATCH] `azurerm_container_app` - `min_replicas` and `max_replicas` now support a maximum value of `300` (#22511) --- internal/services/containerapps/helpers/container_apps.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/services/containerapps/helpers/container_apps.go b/internal/services/containerapps/helpers/container_apps.go index 13cf96a0dde1..dd034ddbbe3a 100644 --- a/internal/services/containerapps/helpers/container_apps.go +++ b/internal/services/containerapps/helpers/container_apps.go @@ -689,7 +689,7 @@ func ContainerTemplateSchema() *pluginsdk.Schema { Type: pluginsdk.TypeInt, Optional: true, Computed: true, - ValidateFunc: validation.IntBetween(0, 30), + ValidateFunc: validation.IntBetween(0, 300), Description: "The minimum number of replicas for this container.", }, @@ -697,7 +697,7 @@ func ContainerTemplateSchema() *pluginsdk.Schema { Type: pluginsdk.TypeInt, Optional: true, Default: 10, - ValidateFunc: validation.IntBetween(1, 30), + ValidateFunc: validation.IntBetween(1, 300), Description: "The maximum number of replicas for this container.", },