August 2018
Intermediate to advanced
416 pages
12h 37m
English
Remember that we are running a dev Vault server instance and so we can run curl as a REST client to the Vault API on our local machine. Let's us run the following curl command to check whether our Vault instance has been initialized, which it should be at this point:
curl http://127.0.0.1:8200/v1/sys/init
We need to create a file called config.hcl in order to bypass TLS defaults for Vault with the following content:
backend "file" { path = "vault"}listener "tcp" { tls_disable = 1}
We will need to unseal the Vault and log in, as the following screenshot shows:

Notice here that we get a token, which is what we will ...
Read now
Unlock full access