Skip to content

Commit

Permalink
Merge pull request #3204 from pallxk/appinsights-doc
Browse files Browse the repository at this point in the history
Fix Application Insights application_type documentation
  • Loading branch information
tombuildsstuff authored Apr 8, 2019
2 parents d4c0443 + 275ce17 commit fa902d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/docs/r/application_insights.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/application_insights_api_key.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit fa902d3

Please sign in to comment.