mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
15 lines
302 B
Terraform
15 lines
302 B
Terraform
# Retrieve by domain name
|
|
data "netbird_reverse_proxy_domain" "example" {
|
|
domain = "app.example.netbird.cloud"
|
|
}
|
|
|
|
# Retrieve the free domain
|
|
data "netbird_reverse_proxy_domain" "free" {
|
|
type = "free"
|
|
}
|
|
|
|
# Retrieve by ID
|
|
data "netbird_reverse_proxy_domain" "by_id" {
|
|
id = "cvit5sjl0ubs73aslrkg"
|
|
}
|