Skip to content

Commit

Permalink
Merge pull request #4720 from samart/master
Browse files Browse the repository at this point in the history
Adding F1 as an option for Cognitive APIs
  • Loading branch information
tombuildsstuff committed Oct 25, 2019
2 parents da69893 + 0d71a14 commit fc26866
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_cognitive_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func resourceArmCognitiveAccount() *schema.Resource {
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.StringInSlice([]string{
"F0", "S0", "S1", "S2", "S3", "S4", "S5", "S6", "P0", "P1", "P2",
"F0", "F1", "S0", "S1", "S2", "S3", "S4", "S5", "S6", "P0", "P1", "P2",
}, false),
},

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/cognitive_account.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The following arguments are supported:

A `sku` block supports the following:

* `name` - (Required) Specifies the Name of the Sku. Possible values are `F0`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1` and `P2`.
* `name` - (Required) Specifies the Name of the Sku. Possible values are `F0`, `F1`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1` and `P2`.

* `tier` - (Required) Specifies the Tier of the Sku. Possible values include `Free`, `Standard` and `Premium`.

Expand Down

0 comments on commit fc26866

Please sign in to comment.