Skip to content

Commit

Permalink
[azure][azints-2316] Enable Resource collection by default for new cu…
Browse files Browse the repository at this point in the history
…stomers (ARM templates) (#767)

* enable resource collection by default

* defaultValue
  • Loading branch information
ashwingandhi-ddog authored May 13, 2024
1 parent b205880 commit 84c542a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -337,4 +338,4 @@
"cspm_enabled": "[and(steps('datadogConfig').resourceCollection.cspm_enabled, steps('datadogConfig').resourceCollection.resource_collection_enabled)]"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -312,4 +313,4 @@
"cspm_enabled": "[and(steps('datadogConfig').resourceCollection.cspm_enabled, steps('datadogConfig').resourceCollection.resource_collection_enabled)]"
}
}
}
}

0 comments on commit 84c542a

Please sign in to comment.