From a4a4936fe5a096d0693d31c3fa0f701ab87568a6 Mon Sep 17 00:00:00 2001 From: tombuildsstuff Date: Mon, 8 Apr 2019 04:53:00 +0200 Subject: [PATCH] r/hdinsights_interactive_query: fixing the cluster kind --- azurerm/resource_arm_hdinsight_interactive_query_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurerm/resource_arm_hdinsight_interactive_query_cluster.go b/azurerm/resource_arm_hdinsight_interactive_query_cluster.go index eedcafc3ea30..ef7c03ea6bf8 100644 --- a/azurerm/resource_arm_hdinsight_interactive_query_cluster.go +++ b/azurerm/resource_arm_hdinsight_interactive_query_cluster.go @@ -158,7 +158,7 @@ func resourceArmHDInsightInteractiveQueryClusterCreate(d *schema.ResourceData, m OsType: hdinsight.Linux, ClusterVersion: utils.String(clusterVersion), ClusterDefinition: &hdinsight.ClusterDefinition{ - Kind: utils.String("InteractiveQuery"), + Kind: utils.String("INTERACTIVEHIVE"), ComponentVersion: componentVersions, Configurations: gateway, },