├── LICENSE ├── README.md ├── data ├── auth │ └── userpass │ │ └── users │ │ └── me.json ├── postgresql │ ├── config │ │ ├── connection.json │ │ └── lease.json │ └── roles │ │ └── readonly.json └── sys │ ├── auth │ └── userpass.json │ ├── mounts │ └── postgresql.json │ └── policy │ └── postgresql-readonly.json └── scripts └── provision.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/README.md -------------------------------------------------------------------------------- /data/auth/userpass/users/me.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/data/auth/userpass/users/me.json -------------------------------------------------------------------------------- /data/postgresql/config/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/data/postgresql/config/connection.json -------------------------------------------------------------------------------- /data/postgresql/config/lease.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/data/postgresql/config/lease.json -------------------------------------------------------------------------------- /data/postgresql/roles/readonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/data/postgresql/roles/readonly.json -------------------------------------------------------------------------------- /data/sys/auth/userpass.json: -------------------------------------------------------------------------------- 1 | {"type":"userpass"} 2 | -------------------------------------------------------------------------------- /data/sys/mounts/postgresql.json: -------------------------------------------------------------------------------- 1 | {"type":"postgresql"} 2 | -------------------------------------------------------------------------------- /data/sys/policy/postgresql-readonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/data/sys/policy/postgresql-readonly.json -------------------------------------------------------------------------------- /scripts/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/vault-provision-example/HEAD/scripts/provision.sh --------------------------------------------------------------------------------