mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
11 lines
159 B
Terraform
11 lines
159 B
Terraform
# Retrieve by name
|
|
data "netbird_policy" "example" {
|
|
name = "TF Test"
|
|
}
|
|
|
|
# Retrieve by ID
|
|
data "netbird_policy" "example" {
|
|
id = "cvraid3l0ubs73c11jg0"
|
|
}
|
|
|