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_local_network_gateway" {
source="./modules/azurerm/r/azurerm_local_network_gateway"# address_space - (optional) is a type of list of stringaddress_space=[]
# gateway_address - (optional) is a type of stringgateway_address=null# gateway_fqdn - (optional) is a type of stringgateway_fqdn=null# 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# tags - (optional) is a type of map of stringtags={}
bgp_settings=[{
asn =null
bgp_peering_address =null
peer_weight =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_local_network_gateway""this" {
# address_space - (optional) is a type of list of stringaddress_space=var.address_space# gateway_address - (optional) is a type of stringgateway_address=var.gateway_address# gateway_fqdn - (optional) is a type of stringgateway_fqdn=var.gateway_fqdn# 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# tags - (optional) is a type of map of stringtags=var.tagsdynamic"bgp_settings" {
for_each=var.bgp_settingscontent {
# asn - (required) is a type of numberasn=bgp_settings.value["asn"]
# bgp_peering_address - (required) is a type of stringbgp_peering_address=bgp_settings.value["bgp_peering_address"]
# peer_weight - (optional) is a type of numberpeer_weight=bgp_settings.value["peer_weight"]
}
}
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"]
}
}
}