Add sample for iothub with private link

This commit is contained in:
github-actions[bot]
2024-02-05 21:12:12 +00:00
committed by lonegunmanb
parent 369cd83197
commit 8c845be0a2
6 changed files with 232 additions and 0 deletions

View File

@ -0,0 +1,17 @@
variable "location" {
type = string
default = "westeurope"
description = "Location of the resource group"
}
variable "vnet_address_space" {
type = string
default = "10.0.0.0/16"
description = "Address range of the virtual network"
}
variable "iothub_subnet_address_space" {
type = string
default = "10.0.3.0/24"
description = "Address range of the subnet containing the iothub"
}