Neeloj
01/24/2023, 7:51 AMSlackbot
01/24/2023, 9:38 AMSlackbot
01/24/2023, 12:21 PMSlackbot
01/24/2023, 1:01 PMSlackbot
01/24/2023, 2:39 PMwil.rodriguez
01/24/2023, 4:17 PMhelindbe
01/24/2023, 4:50 PMsensitive::mysecret is just an example for accessing something in a user defined class named sensitive and getting its parameter mysecret. There is no feature in puppet that makes all secrets available in some scope. What you do is simply reference the variables that hold values, and some of them may have a Sensitive value.Les Shiner
01/24/2023, 5:29 PMLes Shiner
01/24/2023, 5:30 PMLes Shiner
01/24/2023, 5:31 PMSlackbot
01/24/2023, 5:31 PMrismoney
01/24/2023, 7:32 PMBrian Schonecker
01/24/2023, 7:48 PMLes Shiner
01/24/2023, 8:29 PM$manage_firewall = $puppetdb::params::manage_firewall,
still getting:Slackbot
01/24/2023, 8:30 PMLes Shiner
01/24/2023, 8:30 PMDavid Sandilands
01/24/2023, 8:34 PMDavid Sandilands
01/24/2023, 8:39 PMbastelfreak
01/24/2023, 8:40 PMSlackbot
01/24/2023, 9:18 PMPiergiorgio Spagnolatti
01/24/2023, 9:40 PMDr Bunsen Honeydew
01/24/2023, 10:45 PMGerard Lynch
01/24/2023, 11:05 PMSlackbot
01/24/2023, 11:13 PMjms1
01/24/2023, 11:14 PMnotify { 'xxx-reminder' :
message => "\033[0;1;37;41mthis is a reminder\033[0m" ,
}
and in the agent output
Notice: \033[0;1;37;41mthis is a reminder\033[0m
Notice: /Stage[main]/Class/Notify[xxx-reminder]/message: defined 'message' as '\033[0;1;37;41mthis is a reminder\033[0m'
the \033 is supposed to be an ESC character ... is there a way to make it include an actual ESC character in the agent's output?jms1
01/24/2023, 11:15 PMnotify { 'xxx-reminder' :
message => "\033[0;1;37;41mthis is a reminder\033[0m" ,
}
and in the agent output
Notice: \033[0;1;37;41mthis is a reminder\033[0m
Notice: /Stage[main]/Class/Notify[xxx-reminder]/message: defined 'message' as '\033[0;1;37;41mthis is a reminder\033[0m'
the \033 is supposed to be an ESC character ... is there a way to make it include an actual ESC character in the agent's output?natemccurdy
01/24/2023, 11:15 PMnatemccurdy
01/24/2023, 11:16 PMnotify { 'reminder':
message => 'This is an important reminder',
loglevel => 'warning', # This makes the log entry for this resource yellow
}natemccurdy
01/24/2023, 11:16 PMnotify { 'reminder':
message => 'This is an important reminder',
loglevel => 'warning',
}natemccurdy
01/24/2023, 11:16 PM