16 lines
374 B
Bash
Executable File
16 lines
374 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# NOTE: %1 is the user being authorized. However, we'll make this only for
|
|
# the primary user
|
|
|
|
# Accomodate for local install
|
|
PATH=$HOME/.local/bin:$PATH
|
|
|
|
aws codecommit get-file \
|
|
--repository-name authorized_keys \
|
|
--file-path authorized_keys \
|
|
--query 'fileContent' \
|
|
--cli-read-timeout 1 \
|
|
--cli-connect-timeout 1 \
|
|
--output text |base64 -d
|