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_private_dns_zone_virtual_network_link" {
source="./modules/azurerm/r/azurerm_private_dns_zone_virtual_network_link"# name - (required) is a type of stringname=null# private_dns_zone_name - (required) is a type of stringprivate_dns_zone_name=null# registration_enabled - (optional) is a type of boolregistration_enabled=null# resource_group_name - (required) is a type of stringresource_group_name=null# tags - (optional) is a type of map of stringtags={}
# virtual_network_id - (required) is a type of stringvirtual_network_id=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_private_dns_zone_virtual_network_link""this" {
# name - (required) is a type of stringname=var.name# private_dns_zone_name - (required) is a type of stringprivate_dns_zone_name=var.private_dns_zone_name# registration_enabled - (optional) is a type of boolregistration_enabled=var.registration_enabled# 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# virtual_network_id - (required) is a type of stringvirtual_network_id=var.virtual_network_iddynamic"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"]
}
}
}