Inline Content Provider Resource is used to store a data and provide it to a compatible policy.
You can configure the resource with the following options:
Property | Required | Description | Type | Default |
---|---|---|---|---|
name |
X |
The name of the content provider. |
string |
my-content-provider |
content |
X |
The content to store |
integer |
|
attributes |
X |
An array of key value pairs that can be used by a resource consumer. |
object |
Configuration example
{
"name": "content-resource",
"type": "content-provider-inline-resource",
"enabled": true,
"configuration": {
"content": "The content provided by the resource",
"attributes": {
"key": "value"
}
}
}