| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- ---
- version: 2
- interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: localhost:8200
- form:
- list:
- - "true"
- headers:
- X-Vault-Request:
- - "true"
- X-Vault-Token:
- - root
- url: http://localhost:8200/v1/secret_v1?list=true
- method: GET
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 174
- body: |-
- {
- "auth": null,
- "data": {
- "keys": [
- "foo"
- ]
- },
- "lease_duration": 0,
- "lease_id": "",
- "renewable": false,
- "request_id": "00000000-0000-0000-0000-000000000000",
- "warnings": null,
- "wrap_info": null
- }
- headers:
- Cache-Control:
- - no-store
- Content-Length:
- - "174"
- Content-Type:
- - application/json
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- status: 200 OK
- code: 200
- duration: 0s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: localhost:8200
- headers:
- X-Vault-Request:
- - "true"
- X-Vault-Token:
- - root
- url: http://localhost:8200/v1/secret_v1/foo
- method: GET
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 200
- body: |-
- {
- "auth": null,
- "data": {
- "bar": "bazz_v1",
- "lorem": "ipsum_v1"
- },
- "lease_duration": 2764800,
- "lease_id": "",
- "renewable": false,
- "request_id": "00000000-0000-0000-0000-000000000000",
- "warnings": null,
- "wrap_info": null
- }
- headers:
- Cache-Control:
- - no-store
- Content-Length:
- - "200"
- Content-Type:
- - application/json
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains
- status: 200 OK
- code: 200
- duration: 0s
|