From 275ce17fb53337abcfbe39b368e694c9b68c9cfb Mon Sep 17 00:00:00 2001 From: pallxk Date: Mon, 8 Apr 2019 10:24:48 +0800 Subject: [PATCH] Fix Application Insights application_type documentation --- website/docs/r/application_insights.html.markdown | 2 +- website/docs/r/application_insights_api_key.html.markdown | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/r/application_insights.html.markdown b/website/docs/r/application_insights.html.markdown index ebfa9f5181d3..4dd90ac87346 100644 --- a/website/docs/r/application_insights.html.markdown +++ b/website/docs/r/application_insights.html.markdown @@ -46,7 +46,7 @@ The following arguments are supported: * `location` - (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. -* `application_type` - (Required) Specifies the type of Application Insights to create. Valid values are `Java`, `iOS`, `MobileCenter`, `Other`, `Phone`, `Store`, `Web` and `Node.JS`. +* `application_type` - (Required) Specifies the type of Application Insights to create. Valid values are `ios` for _iOS_, `java` for _Java web_, `MobileCenter` for _App Center_, `Node.JS` for _Node.js_, `other` for _General_, `phone` for _Windows Phone_, `store` for _Windows Store_ and `web` for _ASP.NET_. Please note these values are case sensitive; unmatched values are treated as _ASP.NET_ by Azure. Changing this forces a new resource to be created. * `tags` - (Optional) A mapping of tags to assign to the resource. diff --git a/website/docs/r/application_insights_api_key.html.markdown b/website/docs/r/application_insights_api_key.html.markdown index 3550e5634449..d4622ce806d9 100644 --- a/website/docs/r/application_insights_api_key.html.markdown +++ b/website/docs/r/application_insights_api_key.html.markdown @@ -22,7 +22,7 @@ resource "azurerm_application_insights" "test" { name = "tf-test-appinsights" location = "West Europe" resource_group_name = "${azurerm_resource_group.test.name}" - application_type = "Web" + application_type = "web" } resource "azurerm_application_insights_api_key" "read_telemetry" {