in reply to Re^2: redacting from config hash
in thread redacting from config hash
#!/usr/bin/env perl use 5.011; # implies strict + feature 'say' use warnings; use Data::Dumper; use Config::Tiny; use constant { INIFILE => 'example.ini', ENCODING => 'encoding(Windows-1252)' }; sub create { my %config = ( my_sftp => { domain => 'example.com', username => 'myname', password => 'topsecret', }, my_github => { email => "me\@example.com", password => "confidential", }, ); say Dumper \%config; my $ini = bless \%config, 'Config::Tiny'; $ini->write(INIFILE, ENCODING); say 'created ', INIFILE; } sub show { say 'reading ', INIFILE; my $ini = Config::Tiny->read(INIFILE, ENCODING); my %config = %$ini; say Dumper \%config; } create() unless -e INIFILE; show()
There are two configuration values which don't belong into the config file :-) which I defined using constant.
If you don't want to mess with Config::Tiny's internals, you could replace the my $ini = bless \%config, 'Config::Tiny'; line withEdit: Sorry, this was meant as a reply to Re^2: redacting from config hash...my $ini = Config::Tiny->new; $ini->{$_} = $config{$_} for keys %config;
Update: changed 'example.ini' to INIFILE in line 40 🤦
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: redacting from config hash
by Aldebaran (Curate) on Aug 02, 2018 at 07:02 UTC |