We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To facilitate education and easier testing, we need a test resource that manages some local attributes using a simple interface.
test_resource { '/tmp/test.json#foo': ensure => present, data => { 'key' => 'value' } }
would result in a file called /tmp/test.json with the following contents:
/tmp/test.json
{ "foo": { "data": { "key": "value" } } }
This can be implemented as part of the test_device module for both local and "remote" resource usage.
test_device
Originally filed as https://tickets.puppetlabs.com/browse/PDK-1459. See also #213 for a similar but different effort.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Use Case
To facilitate education and easier testing, we need a test resource that manages some local attributes using a simple interface.
Describe the Solution You Would Like
would result in a file called
/tmp/test.json
with the following contents:This can be implemented as part of the
test_device
module for both local and "remote" resource usage.Additional Context
Originally filed as https://tickets.puppetlabs.com/browse/PDK-1459. See also #213 for a similar but different effort.
The text was updated successfully, but these errors were encountered: