@@ -175,6 +175,7 @@ echo $response;
175
175
" jwt_allow_groups" : [
176
176
" Administrators"
177
177
],
178
+ " routing_peer_dns_resolution_enabled" : true ,
178
179
" extra" : {
179
180
" peer_approval_enabled" : true
180
181
}
@@ -198,6 +199,7 @@ echo $response;
198
199
" jwt_allow_groups" : [
199
200
" string"
200
201
],
202
+ " routing_peer_dns_resolution_enabled" : " boolean" ,
201
203
" extra" : {
202
204
" peer_approval_enabled" : " boolean"
203
205
}
@@ -444,6 +446,11 @@ echo $response;
444
446
445
447
List of groups to which users are allowed access
446
448
449
+ </Property>
450
+ <Property name="routing_peer_dns_resolution_enabled" type="boolean" required={false}>
451
+
452
+ Enables or disables DNS resolution on the routing peers
453
+
447
454
</Property>
448
455
<Property name="extra" type="object" required={false}>
449
456
@@ -493,6 +500,7 @@ curl -X PUT https://api.netbird.io/api/accounts/{accountId} \
493
500
" jwt_allow_groups" : [
494
501
" Administrators"
495
502
],
503
+ " routing_peer_dns_resolution_enabled" : true ,
496
504
" extra" : {
497
505
" peer_approval_enabled" : true
498
506
}
@@ -515,6 +523,7 @@ let data = JSON.stringify({
515
523
"jwt_allow_groups": [
516
524
"Administrators"
517
525
],
526
+ "routing_peer_dns_resolution_enabled": true,
518
527
"extra": {
519
528
"peer_approval_enabled": true
520
529
}
@@ -559,6 +568,7 @@ payload = json.dumps({
559
568
"jwt_allow_groups": [
560
569
"Administrators"
561
570
],
571
+ "routing_peer_dns_resolution_enabled": true,
562
572
"extra": {
563
573
"peer_approval_enabled": true
564
574
}
@@ -603,6 +613,7 @@ func main() {
603
613
"jwt_allow_groups": [
604
614
"Administrators"
605
615
],
616
+ "routing_peer_dns_resolution_enabled": true,
606
617
"extra": {
607
618
"peer_approval_enabled": true
608
619
}
@@ -665,6 +676,7 @@ request.body = JSON.dump({
665
676
"jwt_allow_groups": [
666
677
"Administrators"
667
678
],
679
+ "routing_peer_dns_resolution_enabled": true,
668
680
"extra": {
669
681
"peer_approval_enabled": true
670
682
}
@@ -691,6 +703,7 @@ RequestBody body = RequestBody.create(mediaType, '{
691
703
" jwt_allow_groups" : [
692
704
" Administrators"
693
705
],
706
+ " routing_peer_dns_resolution_enabled" : true ,
694
707
" extra" : {
695
708
" peer_approval_enabled" : true
696
709
}
@@ -733,6 +746,7 @@ curl_setopt_array($curl, array(
733
746
"jwt_allow_groups": [
734
747
"Administrators"
735
748
],
749
+ "routing_peer_dns_resolution_enabled": true,
736
750
"extra": {
737
751
"peer_approval_enabled": true
738
752
}
@@ -770,6 +784,7 @@ echo $response;
770
784
" jwt_allow_groups" : [
771
785
" Administrators"
772
786
],
787
+ " routing_peer_dns_resolution_enabled" : true ,
773
788
" extra" : {
774
789
" peer_approval_enabled" : true
775
790
}
@@ -791,6 +806,7 @@ echo $response;
791
806
" jwt_allow_groups" : [
792
807
" string"
793
808
],
809
+ " routing_peer_dns_resolution_enabled" : " boolean" ,
794
810
" extra" : {
795
811
" peer_approval_enabled" : " boolean"
796
812
}
0 commit comments