Skip to content

Commit

Permalink
azurerm_container_app - min_replicas and max_replicas now suppo…
Browse files Browse the repository at this point in the history
…rt a maximum value of `300` (#22511)
  • Loading branch information
brezam committed Jul 13, 2023
1 parent 2d0d186 commit a4a47bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/services/containerapps/helpers/container_apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -689,15 +689,15 @@ 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.",
},

"max_replicas": {
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.",
},

Expand Down

0 comments on commit a4a47bd

Please sign in to comment.