Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/encrypt-secrets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.

echo "Enter password for encryption: "
read password
read -s -p password
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try:

read -s -p "Enter password for encryption: " password
echo

:-) The -p sets the prompt. (The echo afterwards is 'cuz apparently suppressing echo also suppresses the trailing endline...)


tar cvf secrets.tar testing/resources/{service-account.json,test-env.sh}
openssl aes-256-cbc -k "$password" -in secrets.tar -out secrets.tar.enc
Expand Down