forked from dcoker/biscuit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.go
More file actions
24 lines (17 loc) · 726 Bytes
/
doc.go
File metadata and controls
24 lines (17 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Code generated by cmd/support/generate/main.go, DO NOT EDIT.
/*
Biscuit helps you use AWS KMS to manage infrastructure secrets.
Biscuit uses standard symmetric crypto algorithms (NaCl secretbox or
AES-GCM-256) and ephemeral data keys provided by KMS (using "key
wrapping" or "envelope encryption"). The ciphertexts are stored in a
YAML file that is safe to distribute in source control, deployments,
CI systems, etc.
Biscuit provides a key-value store interface (put and get), and tooling for
grant and policy management across AWS regions.
Quickstart:
biscuit kms get-caller-identity
biscuit kms init -f stash.yml
biscuit put -f stash.yml launch_codes 0000
biscuit get -f stash.yml launch_codes
*/
package main