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_host_group" {
source="./modules/azurerm/r/azurerm_dedicated_host_group"# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# platform_fault_domain_count - (required) is a type of numberplatform_fault_domain_count=null# resource_group_name - (required) is a type of stringresource_group_name=null# tags - (optional) is a type of map of stringtags={}
# zones - (optional) is a type of list of stringzones=[]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_dedicated_host_group""this" {
# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# platform_fault_domain_count - (required) is a type of numberplatform_fault_domain_count=var.platform_fault_domain_count# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# tags - (optional) is a type of map of stringtags=var.tags# zones - (optional) is a type of list of stringzones=var.zonesdynamic"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"]
}
}
}