From 84c542a4bb58facaa07b1d1d2d7527179cc7ac80 Mon Sep 17 00:00:00 2001 From: Ashwin Gandhi <106698143+ashwingandhi-ddog@users.noreply.github.com> Date: Mon, 13 May 2024 14:31:22 -0400 Subject: [PATCH] [azure][azints-2316] Enable Resource collection by default for new customers (ARM templates) (#767) * enable resource collection by default * defaultValue --- .../CreateUIDefinition-managementgroups.json | 7 ++++--- .../azure-integration/CreateUIDefinition.json | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/azure/deploy-to-azure/azure-integration/CreateUIDefinition-managementgroups.json b/azure/deploy-to-azure/azure-integration/CreateUIDefinition-managementgroups.json index f440205a5..f0f3734de 100644 --- a/azure/deploy-to-azure/azure-integration/CreateUIDefinition-managementgroups.json +++ b/azure/deploy-to-azure/azure-integration/CreateUIDefinition-managementgroups.json @@ -268,7 +268,7 @@ "type": "Microsoft.Common.CheckBox", "label": "Automute", "toolTip": "Whether or not to use automute for hosts", - "defaultValue": "true" + "defaultValue": true }, { "name": "custom_metrics_enabled", @@ -295,7 +295,8 @@ "name": "resource_collection_enabled", "type": "Microsoft.Common.CheckBox", "label": "Enable Resource Collection", - "toolTip": "When enabled, Datadog collects metadata and configuration info from cloud resources (compute instances, databases, load balancers, etc.) in your Azure environment." + "toolTip": "When enabled, Datadog collects metadata and configuration info from cloud resources (compute instances, databases, load balancers, etc.) in your Azure environment.", + "defaultValue": true }, { "name": "cspm_enabled", @@ -337,4 +338,4 @@ "cspm_enabled": "[and(steps('datadogConfig').resourceCollection.cspm_enabled, steps('datadogConfig').resourceCollection.resource_collection_enabled)]" } } -} +} \ No newline at end of file diff --git a/azure/deploy-to-azure/azure-integration/CreateUIDefinition.json b/azure/deploy-to-azure/azure-integration/CreateUIDefinition.json index 93b01acdc..a03f9d102 100644 --- a/azure/deploy-to-azure/azure-integration/CreateUIDefinition.json +++ b/azure/deploy-to-azure/azure-integration/CreateUIDefinition.json @@ -244,7 +244,7 @@ "type": "Microsoft.Common.CheckBox", "label": "Automute", "toolTip": "Whether or not to use automute for hosts", - "defaultValue": "true" + "defaultValue": true }, { "name": "custom_metrics_enabled", @@ -271,7 +271,8 @@ "name": "resource_collection_enabled", "type": "Microsoft.Common.CheckBox", "label": "Enable Resource Collection", - "toolTip": "When enabled, Datadog collects metadata and configuration info from cloud resources (compute instances, databases, load balancers, etc.) in your Azure environment." + "toolTip": "When enabled, Datadog collects metadata and configuration info from cloud resources (compute instances, databases, load balancers, etc.) in your Azure environment.", + "defaultValue": true }, { "name": "cspm_enabled", @@ -312,4 +313,4 @@ "cspm_enabled": "[and(steps('datadogConfig').resourceCollection.cspm_enabled, steps('datadogConfig').resourceCollection.resource_collection_enabled)]" } } -} +} \ No newline at end of file