From bf964cc46a5f433d7a89e8445af77c3c6ca55f3d Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 2 Nov 2022 17:05:08 +0100 Subject: [PATCH] Fix Typo in $listener data This was introduced in the transition from params.pp to init.pp --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index f47130f9..da997dee 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -97,7 +97,7 @@ Optional[Boolean] $manage_service_file = $vault::params::manage_service_file, Hash $storage = { 'file' => { 'path' => '/var/lib/vault' } }, $manage_storage_dir = false, - Variant[Hash, Array[Hash]] $listener = { 'tcp' => { 'addresse' => '127.0.0.1:8200', 'tls_disable' => 1 }, }, + Variant[Hash, Array[Hash]] $listener = { 'tcp' => { 'address' => '127.0.0.1:8200', 'tls_disable' => 1 }, }, Optional[Hash] $ha_storage = undef, Optional[Hash] $seal = undef, Optional[Boolean] $disable_cache = undef,