mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
5 lines
217 B
Bash
Executable File
5 lines
217 B
Bash
Executable File
#!/usr/bin/env bash
|
|
aws secretsmanager get-secret-value --secret-id Invenio | \
|
|
jq -r '.SecretString | fromjson | to_entries | .[] | .key + "=\"" + .value + "\""' > secrets.env
|
|
cat am-d-model.env secrets.env > .env
|