Skip to content

rvrdata.adapters.rvrvault

Data adapter for vault secrets.

exception VaultSecretExistsError

Error when secret to be overwritten in create exists.

class RvrdataRvrvault

Data adapter for rvrvault.

force_pass()

Fake successful action that does nothing (used for testing dry-runs).

read()

Get data interface for vaults.

Vault Read Metrics

The following metrics are included in the step results:

  • rvrdata.dataflow.action.rvrvault.read.action_count: Number of times the read function is called (int).

One row is added to the metrics each time the action is run.

list()

List data interface.

Vault List Metrics

The following metrics are included in the step results:

  • rvrdata.dataflow.action.rvrvault.list.action_count: Number of times the list function is called (int).

One row is added to the metrics each time the action is run.

delete()

Delete data interface for vault.

Vault Delete Metrics

The following metrics are included in the step results:

  • rvrdata.dataflow.action.rvrvault.delete.action_count: Number of times the delete function is called (int).

One row is added to the metrics each time the action is run.

create()

Create new secret in vault.

Vault Create Metrics

The following metrics are included in the step results:

  • rvrdata.dataflow.action.rvrvault.write.action_count: Number of times the write function is successfully called (int).

One row is added to the metrics each time the action is run.

write()

Write vault secret.

Vault Read Metrics

The following metrics are included in the step results:

  • rvrdata.dataflow.action.rvrvault.write.action_count: Number of times the write function is called (int).

One row is added to the metrics each time the action is run.