Skip to content

Commit 24645b6

Browse files
committed
Review fixes and updated readme
1 parent db43ecd commit 24645b6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

quickstart/201-iot-hub-with-device-provisioning-service/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ resource "azurerm_iothub" "iothub" {
7171

7272
sku {
7373
name = "S1"
74-
capacity = "1"
74+
capacity = 1
7575
}
7676

7777
endpoint {
@@ -134,8 +134,8 @@ resource "azurerm_iothub_shared_access_policy" "hub_access_policy" {
134134
resource_group_name = azurerm_resource_group.rg.name
135135
iothub_name = azurerm_iothub.iothub.name
136136

137-
registry_read = true
138-
registry_write = true
137+
registry_read = true
138+
registry_write = true
139139
service_connect = true
140140
}
141141

@@ -153,7 +153,7 @@ resource "azurerm_iothub_dps" "dps" {
153153

154154
sku {
155155
name = "S1"
156-
capacity = "1"
156+
capacity = 1
157157
}
158158

159159
linked_hub {

quickstart/201-iot-hub-with-device-provisioning-service/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Azure IoT Hub Device Provisioning Service
1+
# Azure IoT Hub and IoT Hub Device Provisioning Service
22

3-
This template deploys an instance of [Device Provisioning Service](https://learn.microsoft.com/azure/iot-dps/) on Azure.
3+
This template deploys an instance of [Azure IoT Hub](https://learn.microsoft.com/azure/iot-hub/) and [IoT Hub Device Provisioning Service](https://learn.microsoft.com/azure/iot-dps/) on Azure.
44

55
## Terraform resource types
66

0 commit comments

Comments
 (0)