mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
10 lines
184 B
Terraform
10 lines
184 B
Terraform
# Retrieve route by network_id
|
|
data "netbird_route" "example_a" {
|
|
network_id = "TF Test"
|
|
}
|
|
|
|
# Retrieve route by ID
|
|
data "netbird_route" "example_b" {
|
|
id = "cvikdf3l0ubs73asl4r0"
|
|
}
|