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_network_interface_backend_address_pool_association" {
source="./modules/azurerm/r/azurerm_network_interface_backend_address_pool_association"# backend_address_pool_id - (required) is a type of stringbackend_address_pool_id=null# ip_configuration_name - (required) is a type of stringip_configuration_name=null# network_interface_id - (required) is a type of stringnetwork_interface_id=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_network_interface_backend_address_pool_association""this" {
# backend_address_pool_id - (required) is a type of stringbackend_address_pool_id=var.backend_address_pool_id# ip_configuration_name - (required) is a type of stringip_configuration_name=var.ip_configuration_name# network_interface_id - (required) is a type of stringnetwork_interface_id=var.network_interface_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"]
}
}
}