Skip to content

Commit

Permalink
azurerm_synapse_spark_pool - support addtional values for node_size_f…
Browse files Browse the repository at this point in the history
…amily (#23040)
  • Loading branch information
katbyte authored Aug 22, 2023
1 parent adead5d commit 20a7f73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions internal/services/synapse/synapse_spark_pool_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ func resourceSynapseSparkPool() *pluginsdk.Resource {
Type: pluginsdk.TypeString,
Required: true,
ValidateFunc: validation.StringInSlice([]string{
string(synapse.NodeSizeFamilyHardwareAcceleratedFPGA),
string(synapse.NodeSizeFamilyHardwareAcceleratedGPU),
string(synapse.NodeSizeFamilyMemoryOptimized),
string(synapse.NodeSizeFamilyNone),
}, false),
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/synapse_spark_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The following arguments are supported:

* `synapse_workspace_id` - (Required) The ID of the Synapse Workspace where the Synapse Spark Pool should exist. Changing this forces a new Synapse Spark Pool to be created.

* `node_size_family` - (Required) The kind of nodes that the Spark Pool provides. Possible values are `MemoryOptimized` and `None`.
* `node_size_family` - (Required) The kind of nodes that the Spark Pool provides. Possible values are `HardwareAcceleratedFPGA`, `HardwareAcceleratedGPU`, `MemoryOptimized`, and `None`.

* `node_size` - (Required) The level of node in the Spark Pool. Possible values are `Small`, `Medium`, `Large`, `None`, `XLarge`, `XXLarge` and `XXXLarge`.

Expand Down

0 comments on commit 20a7f73

Please sign in to comment.