You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"azurerm_dedicated_hardware_security_module" {
source="./modules/azurerm/r/azurerm_dedicated_hardware_security_module"# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# sku_name - (required) is a type of stringsku_name=null# stamp_id - (optional) is a type of stringstamp_id=null# tags - (optional) is a type of map of stringtags={}
# zones - (optional) is a type of list of stringzones=[]
network_profile=[{
network_interface_private_ip_addresses = []
subnet_id =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_dedicated_hardware_security_module""this" {
# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# sku_name - (required) is a type of stringsku_name=var.sku_name# stamp_id - (optional) is a type of stringstamp_id=var.stamp_id# tags - (optional) is a type of map of stringtags=var.tags# zones - (optional) is a type of list of stringzones=var.zonesdynamic"network_profile" {
for_each=var.network_profilecontent {
# network_interface_private_ip_addresses - (required) is a type of set of stringnetwork_interface_private_ip_addresses=network_profile.value["network_interface_private_ip_addresses"]
# subnet_id - (required) is a type of stringsubnet_id=network_profile.value["subnet_id"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}