Skip to content

[AVM Module Issue]: Application Gateway - Capacity parameter maximum value too lowΒ #6525

@chrisashton001

Description

@chrisashton001

Check for previous/existing GitHub issues

  • I have checked for previous/existing GitHub issues

Issue Type?

Bug

Module Name

avm/res/network/application-gateway

(Optional) Module Version

0.8

Description

Capacity parameter relates to the number of manual instances to create, which are limited to between 1 & 125.

This...

@description('Optional. The number of Application instances to be configured.')
@minValue(0)
@maxValue(10)
param capacity int = 2

...would be better as this...

@description('Optional. The number of Application instances to be configured.')
@minValue(0)
@maxValue(125)
param capacity int = 2

...and would therefore allow creation of up to 125 instances.

(Optional) Correlation Id

No response

Metadata

Metadata

Type

No type

Projects

Status

Needs: Triage

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions