Skip to content

Commit

Permalink
azurerm_application_insights - retention_in_days defaults to 90 h…
Browse files Browse the repository at this point in the history
  • Loading branch information
hbuckle authored and jrauschenbusch committed May 13, 2020
1 parent ac3ed36 commit b379778
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -64,6 +64,7 @@ func resourceArmApplicationInsights() *schema.Resource {
"retention_in_days": {
Type: schema.TypeInt,
Optional: true,
Default: 90,
ValidateFunc: validation.IntInSlice([]int{
30,
60,
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/application_insights.html.markdown
Expand Up @@ -52,7 +52,7 @@ The following arguments are supported:

* `daily_data_cap_notifications_disabled` - (Optional) Specifies if a notification email will be send when the daily data volume cap is met.

* `retention_in_days` - (Optional) Specifies the retention period in days. Possible values are `30`, `60`, `90`, `120`, `180`, `270`, `365`, `550` or `730`.
* `retention_in_days` - (Optional) Specifies the retention period in days. Possible values are `30`, `60`, `90`, `120`, `180`, `270`, `365`, `550` or `730`. Defaults to `90`.

* `sampling_percentage` - (Optional) Specifies the percentage of the data produced by the monitored application that is sampled for Application Insights telemetry.

Expand Down

0 comments on commit b379778

Please sign in to comment.