https://github.com/xpdojo/vault
Vault is an identity-based secret and encryption management system.
https://github.com/xpdojo/vault
config-server vault
Last synced: 5 months ago
JSON representation
Vault is an identity-based secret and encryption management system.
- Host: GitHub
- URL: https://github.com/xpdojo/vault
- Owner: xpdojo
- License: gpl-3.0
- Created: 2022-09-22T00:58:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-22T03:49:07.000Z (over 3 years ago)
- Last Synced: 2025-02-06T15:53:25.303Z (over 1 year ago)
- Topics: config-server, vault
- Language: HCL
- Homepage: https://developer.hashicorp.com/vault/docs
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vault
## Install
### Ubuntu 22.04
Add PGP for the package signing key.
```sh
sudo apt update && sudo apt install gpg
```
Add the HashiCorp GPG key.
```sh
wget -O- https://apt.releases.hashicorp.com/gpg | \
gpg --dearmor | \
sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg >/dev/null
```
Verify the key's fingerprint.
```sh
gpg --no-default-keyring --keyring /usr/share/keyrings/hashicorp-archive-keyring.gpg --fingerprint
# E8A0 32E0 94D8 EB4E A189 D270 DA41 8C88 A321 9F7B
```
Add the official HashiCorp Linux repository.
```sh
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
```
Update and install.
```sh
sudo apt update && sudo apt install vault
```
```sh
> vault -v
# Vault v1.11.3 (17250b25303c6418c283c95b1d5a9c9f16174fe8), built 2022-08-26T10:27:10Z
```
## 실행
```sh
vault server -dev
```
## 참조
- [Install Vault](https://learn.hashicorp.com/tutorials/vault/getting-started-install) - HashiCorp Learn