Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions iosxe_flow.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ locals {
source_loopback = try(exporter.source_loopback, local.defaults.iosxe.device_config.flow.exporters.source_loopback, null)
transport_udp = try(exporter.transport_udp, local.defaults.iosxe.device_config.flow.exporters.transport_udp, null)
template_data_timeout = try(exporter.template_data_timeout, local.defaults.iosxe.device_config.flow.exporters.template_data_timeout, null)
ttl = try(exporter.ttl, local.defaults.iosxe.device_config.flow.exporters.ttl, null)
}
]
])
Expand All @@ -38,6 +39,7 @@ resource "iosxe_flow_exporter" "flow_exporter" {
source_loopback = each.value.source_loopback
transport_udp = each.value.transport_udp
template_data_timeout = each.value.template_data_timeout
ttl = each.value.ttl

depends_on = [
iosxe_interface_loopback.loopback
Expand Down