15 lines
271 B
YAML
15 lines
271 B
YAML
|
name: Store secret data
|
||
|
method: POST
|
||
|
url: http://localhost:8000/secret
|
||
|
body:
|
||
|
content: |-
|
||
|
{
|
||
|
"data": "my-secret"
|
||
|
}
|
||
|
content_type: application/json
|
||
|
headers:
|
||
|
- name: content-type
|
||
|
value: application/json
|
||
|
scripts:
|
||
|
on_response: scripts/store-secret-data.py
|