Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing doc of iothub #19829

Merged
merged 1 commit into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/r/iothub.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ An `identity` block exports the following:

---

A `shared access policy` block contains the following:
A `shared_access_policy` block contains the following:

* `key_name` - The name of the shared access policy.

Expand Down
4 changes: 4 additions & 0 deletions website/docs/r/iothub_enrichment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ resource "azurerm_iothub_enrichment" "example" {

The following arguments are supported:

* `iothub_name` - (Required) The IoTHub name of the enrichment. Changing this forces a new resource to be created.

* `resource_group_name` - (Required) The name of the resource group under which the IoTHub resource is created. Changing this forces a new resource to be created.

* `key` - (Required) The key of the enrichment. Changing this forces a new resource to be created.

* `value` - (Required) The value of the enrichment. Value can be any static string, the name of the IoT hub sending the message (use `$iothubname`) or information from the device twin (ex: `$twin.tags.latitude`)
Expand Down