From 1f528a832d87da56eeb8c81cab0d6c318a2239fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Kar=C3=A9kinian?= Date: Thu, 16 Aug 2018 16:01:24 +0200 Subject: [PATCH] Add a role to set up a cluster node with TLS --- roles/ipfs_cluster_with_tls.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 roles/ipfs_cluster_with_tls.rb diff --git a/roles/ipfs_cluster_with_tls.rb b/roles/ipfs_cluster_with_tls.rb new file mode 100644 index 0000000..70e3901 --- /dev/null +++ b/roles/ipfs_cluster_with_tls.rb @@ -0,0 +1,15 @@ +name "ipfs_cluster_with_tls" + +run_list %w( + kosmos-ipfs + kosmos-ipfs::cluster + kosmos-ipfs::letsencrypt +) + +override_attributes( + 'kosmos-ipfs' => { + 'nginx' => { + 'api_port' => 9095 + } + } +)