]> git.openstreetmap.org Git - chef.git/commitdiff
networking: Add grant roaming wg
authorGrant Slater <git@firefishy.com>
Thu, 28 Jul 2022 13:16:57 +0000 (16:16 +0300)
committerGrant <github@firefishy.com>
Thu, 28 Jul 2022 13:39:11 +0000 (16:39 +0300)
cookbooks/networking/recipes/default.rb

index 162e0c3a86f569ad3be98a86fea81e9da2ab42b4..22ed79abeb23c115eb13dcfc14fc246e0acca050 100644 (file)
@@ -262,11 +262,18 @@ if node[:networking][:wireguard][:enabled]
       :endpoint => "gate.compton.nu:51820"
     }
 
+    # Grant home
     node.default[:networking][:wireguard][:peers] << {
       :public_key => "RofATnvlWxP3mt87+QKRXFE5MVxtoCcTsJ+yftZYEE4=",
       :allowed_ips => "10.89.122.1/32",
       :endpoint => "gate.firefishy.com:51820"
     }
+
+    # Grant roaming
+    node.default[:networking][:wireguard][:peers] << {
+      :public_key => "RofATnvlWxP3mt87+QKRXFE5MVxtoCcTsJ+yftZYEE4=",
+      :allowed_ips => "10.89.123.1/32"
+    }
   end
 
   template "/etc/systemd/network/wireguard.netdev" do