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"aviatrix_device_interface_config" {
source="./modules/aviatrix/r/aviatrix_device_interface_config"# device_name - (required) is a type of stringdevice_name=null# wan_primary_interface - (required) is a type of stringwan_primary_interface=null# wan_primary_interface_public_ip - (required) is a type of stringwan_primary_interface_public_ip=null
}
variable"device_name" {
description="(required) - Name of device."type=string
}
variable"wan_primary_interface" {
description="(required) - Primary WAN interface of the device. For example, 'GigabitEthernet1'."type=string
}
variable"wan_primary_interface_public_ip" {
description="(required) - Primary WAN interface public IP address."type=string
}
resource"aviatrix_device_interface_config""this" {
# device_name - (required) is a type of stringdevice_name=var.device_name# wan_primary_interface - (required) is a type of stringwan_primary_interface=var.wan_primary_interface# wan_primary_interface_public_ip - (required) is a type of stringwan_primary_interface_public_ip=var.wan_primary_interface_public_ip
}