Skip to content

gravitee-io/gravitee-resource-content-provider-inline

Repository files navigation

Inline Content Provider Resource

License Releases CircleCI Join the community forum

Description

Inline Content Provider Resource is used to store a data and provide it to a compatible policy.

Configuration

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"
        }
    }
}