rally-openstack/samples/tasks/scenarios/barbican/create-and-delete-symmetric-secret.json
Charles Short 993adb74b4 Add barbican scenario for symmetric secret
Add BarbicanSecrets.create_symmetric_and_delete
scenario to create a symmetric secret. User can
specify payload, algorithm, bit_length, and mode
used for the scenario.

Change-Id: I5c5ca847f8b96de94654e16c37e11437e462c3f6
Signed-off-by: Charles Short <chucks@redhat.com>
2019-01-28 15:19:11 +00:00

29 lines
671 B
JSON

{
"BarbicanSecrets.create_symmetric_and_delete": [
{
"args": {
"payload": "rally_data",
"algorithm": "aes",
"bit_length": 256,
"mode": "cbc"
},
"runner": {
"type": "constant",
"times": 2,
"concurrency": 1
},
"context": {
"users": {
"tenants": 1,
"users_per_tenant": 1
}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}