Secrets iteration:

- added delete http verb to system/secrets
- added secrets request type
- added vagrant env provisioned by existing deploy_stack.sh

Signed-off-by: Andrew Cornies <acornies@gmail.com>
This commit is contained in:
Andrew Cornies
2018-11-18 09:38:41 -05:00
committed by Alex Ellis
parent d2ef8b9207
commit a9238f5631
4 changed files with 85 additions and 1 deletions

View File

@ -90,3 +90,8 @@ type AsyncReport struct {
type DeleteFunctionRequest struct {
FunctionName string `json:"functionName"`
}
// SecretRequest create, update a secret
type SecretRequest struct {
Secrets *map[string]string `json:"secrets"`
}