mirror of
https://github.com/Cian-H/iform-invenio.git
synced 2025-12-22 20:41:56 +00:00
4 lines
163 B
Bash
Executable File
4 lines
163 B
Bash
Executable File
#!/usr/bin/env bash
|
|
aws secretsmanager get-secret-value --secret-id Invenio | \
|
|
jq -r '.SecretString | fromjson | to_entries | .[] | .key + "=" + .value' > .env
|