Skip to content

Commit

Permalink
Merge pull request #2015 from kautsig/app-gateway-v2
Browse files Browse the repository at this point in the history
Add support for application gateway v2, see #1991
  • Loading branch information
katbyte authored Oct 4, 2018
2 parents 05264be + b906ed5 commit d966296
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions azurerm/resource_arm_application_gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ func resourceArmApplicationGateway() *schema.Resource {
string(network.StandardSmall),
string(network.StandardMedium),
string(network.StandardLarge),
string(network.StandardV2),
string(network.WAFLarge),
string(network.WAFMedium),
string(network.WAFV2),
}, true),
},

Expand All @@ -68,7 +70,9 @@ func resourceArmApplicationGateway() *schema.Resource {
DiffSuppressFunc: ignoreCaseDiffSuppressFunc,
ValidateFunc: validation.StringInSlice([]string{
string(network.ApplicationGatewayTierStandard),
string(network.ApplicationGatewayTierStandardV2),
string(network.ApplicationGatewayTierWAF),
string(network.ApplicationGatewayTierWAFV2),
}, true),
},

Expand Down
4 changes: 4 additions & 0 deletions website/docs/r/application_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,17 @@ The `sku` block supports:
* `Standard_Small`
* `Standard_Medium`
* `Standard_Large`
* `Standard_v2`
* `WAF_Medium`
* `WAF_Large`
* `WAF_v2`

* `tier` - (Required) Supported values are:

* `Standard`
* `Standard_v2`
* `WAF`
* `WAF_v2`

* `capacity` - (Required) Specifies instance count. Can be 1 to 10.

Expand Down

0 comments on commit d966296

Please sign in to comment.