You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/perl
|
|
|
|
my $json_args = <<'END_MESSAGE';
|
|
<<INCLUDE_ANSIBLE_MODULE_JSON_ARGS>>
|
|
END_MESSAGE
|
|
|
|
print '{';
|
|
print ' "message": "I am a perl script! Here is my input.",' . "\n";
|
|
print ' "input": ' . $json_args;
|
|
print '}' . "\n";
|