Skip to content

Commit

Permalink
#24080 : Adding support for more vcores. (#24085)
Browse files Browse the repository at this point in the history
* #24080 : Adding support for more vcores.

* #24080 : Updating documentation

---------

Co-authored-by: Harshavardhan Musanalli <[email protected]>
  • Loading branch information
harshavmb and harshavmb authored Dec 4, 2023
1 parent 41702f9 commit 1ad00ff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,21 @@ func (r MsSqlManagedInstanceResource) Arguments() map[string]*pluginsdk.Schema {
Required: true,
ValidateFunc: validation.IntInSlice([]int{
4,
6,
8,
10,
12,
16,
20,
24,
32,
40,
48,
56,
64,
80,
96,
128,
}),
},

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

* `subnet_id` - (Required) The subnet resource id that the SQL Managed Instance will be associated with. Changing this forces a new resource to be created.

* `vcores` - (Required) Number of cores that should be assigned to the SQL Managed Instance. Values can be `8`, `16`, or `24` for Gen4 SKUs, or `4`, `8`, `16`, `24`, `32`, `40`, `64`, or `80` for Gen5 SKUs.
* `vcores` - (Required) Number of cores that should be assigned to the SQL Managed Instance. Values can be `8`, `16`, or `24` for Gen4 SKUs, or `4`, `6`, `8`, `10`, `12`, `16`, `20`, `24`, `32`, `40`, `48`, `56`, `64`, `80`, `96` or `128` for Gen5 SKUs.

* `collation` - (Optional) Specifies how the SQL Managed Instance will be collated. Default value is `SQL_Latin1_General_CP1_CI_AS`. Changing this forces a new resource to be created.

Expand Down

0 comments on commit 1ad00ff

Please sign in to comment.