Skip to content

Commit

Permalink
Fix for msservices / rserver
Browse files Browse the repository at this point in the history
  • Loading branch information
kosinsky committed May 16, 2020
1 parent 90d4176 commit 1bafc3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func resourceArmHDInsightRServerClusterCreate(d *schema.ResourceData, meta inter

gatewayRaw := d.Get("gateway").([]interface{})
rStudio := d.Get("rstudio").(bool)
configurations := expandHDInsightsMLServicesConfigurations(gatewayRaw, rStudio)
configurations := expandHDInsightsRServerConfigurations(gatewayRaw, rStudio)

if metastoresRaw, ok := d.GetOkExists("metastores"); ok {
metastores := expandHDInsightsMetastore(metastoresRaw.([]interface{}))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -972,6 +972,7 @@ resource "azurerm_hdinsight_ml_services_cluster" "test" {
cluster_version = "3.6"
tier = "Standard"
rstudio = true
gateway {
enabled = true
username = "acctestusrgw"
Expand Down

0 comments on commit 1bafc3d

Please sign in to comment.