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