mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
7 lines
218 B
Terraform
7 lines
218 B
Terraform
data "netbird_reverse_proxy_clusters" "all" {}
|
|
|
|
resource "netbird_reverse_proxy_domain" "example" {
|
|
domain = "app.example.com"
|
|
target_cluster = data.netbird_reverse_proxy_clusters.all.clusters[0].address
|
|
}
|