Created
August 20, 2020 11:50
-
-
Save dongsupark/75eb0fb63a32eab3bffdc884d72165f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MIME-Version: 1.0 | |
Content-Type: multipart/mixed; boundary="7cc194c95b686cb8cd0d6ea9c3f6fa39f536324b4e0b333d8deffb59e355" | |
--7cc194c95b686cb8cd0d6ea9c3f6fa39f536324b4e0b333d8deffb59e355 | |
content-type: text/cloud-boothook | |
#cloud-boothook | |
#!/bin/bash | |
# Copyright 2020 The Kubernetes Authors. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
umask 006 | |
REGION="eu-west-1" | |
SECRET_PREFIX="secretARN" | |
CHUNKS="1" | |
FILE="/etc/secret-userdata.txt" | |
FINAL_INDEX=$((CHUNKS - 1)) | |
# Log an error and exit. | |
# Args: | |
# $1 Message to log with the error | |
# $2 The error code to return | |
log::error_exit() { | |
local message="${1}" | |
local code="${2}" | |
log::error "${message}" | |
log::error "aws.cluster.x-k8s.io encrypted cloud-init script $0 exiting with status ${code}" | |
exit "${code}" | |
} | |
log::success_exit() { | |
log::info "aws.cluster.x-k8s.io encrypted cloud-init script $0 finished" | |
exit 0 | |
} | |
# Log an error but keep going. | |
log::error() { | |
local message="${1}" | |
timestamp=$(date --iso-8601=seconds) | |
echo "!!! [${timestamp}] ${1}" >&2 | |
shift | |
for message; do | |
echo " ${message}" >&2 | |
done | |
} | |
# Print a status line. Formatted to show up in a stream of output. | |
log::info() { | |
timestamp=$(date --iso-8601=seconds) | |
echo "+++ [${timestamp}] ${1}" | |
shift | |
for message; do | |
echo " ${message}" | |
done | |
} | |
check_aws_command() { | |
local command="${1}" | |
local code="${2}" | |
local out="${3}" | |
local sanitised="${out//[$'\t\r\n']/}" | |
case ${code} in | |
"0") | |
log::info "AWS CLI reported successful execution for ${command}" | |
;; | |
"2") | |
log::error "AWS CLI reported that it could not parse ${command}" | |
log::error "${sanitised}" | |
;; | |
"130") | |
log::error "AWS CLI reported SIGINT signal during ${command}" | |
log::error "${sanitised}" | |
;; | |
"255") | |
log::error "AWS CLI reported service error for ${command}" | |
log::error "${sanitised}" | |
;; | |
*) | |
log::error "AWS CLI reported unknown error ${code} for ${command}" | |
log::error "${sanitised}" | |
;; | |
esac | |
} | |
delete_secret_value() { | |
local id="${SECRET_PREFIX}-${1}" | |
local out | |
log::info "deleting secret from AWS Secrets Manager" | |
set +o errexit | |
set +o nounset | |
set +o pipefail | |
out=$( | |
aws secretsmanager --region ${REGION} delete-secret --force-delete-without-recovery --secret-id "${id}" 2>&1 | |
) | |
local delete_return=$? | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
check_aws_command "SecretsManager::DeleteSecret" "${delete_return}" "${out}" | |
if [ ${delete_return} -ne 0 ]; then | |
log::error_exit "Could not delete secret value" 2 | |
fi | |
} | |
delete_secrets() { | |
for i in $(seq 0 ${FINAL_INDEX}); do | |
delete_secret_value "$i" | |
done | |
} | |
get_secret_value() { | |
local chunk=$1 | |
local id="${SECRET_PREFIX}-${chunk}" | |
log::info "getting userdata from AWS Secrets Manager" | |
log::info "getting secret value from AWS Secrets Manager" | |
local data | |
set +o errexit | |
set +o nounset | |
set +o pipefail | |
data=$( | |
set +e | |
set +o pipefail | |
aws secretsmanager --region ${REGION} get-secret-value --output text --query 'SecretBinary' --secret-id "${id}" 2>&1 | |
) | |
local get_return=$? | |
check_aws_command "SecretsManager::GetSecretValue" "${get_return}" "${data}" | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
if [ ${get_return} -ne 0 ]; then | |
log::error "could not get secret value, deleting secret" | |
delete_secrets | |
log::error_exit "could not get secret value, but secret was deleted" 1 | |
fi | |
log::info "appending data to temporary file ${FILE}.gz" | |
echo "${data}" | base64 -d >>${FILE}.gz | |
} | |
log::info "aws.cluster.x-k8s.io encrypted cloud-init script $0 started" | |
log::info "secret prefix: ${SECRET_PREFIX}" | |
log::info "secret count: ${CHUNKS}" | |
if test -f "${FILE}"; then | |
log::info "encrypted userdata already written to disk" | |
log::success_exit | |
fi | |
for i in $(seq 0 "${FINAL_INDEX}"); do | |
get_secret_value "$i" | |
done | |
delete_secrets | |
log::info "decompressing userdata to ${FILE}" | |
gunzip "${FILE}.gz" | |
GUNZIP_RETURN=$? | |
if [ ${GUNZIP_RETURN} -ne 0 ]; then | |
log::error_exit "could not unzip data" 4 | |
fi | |
log::info "restarting cloud-init" | |
systemctl restart cloud-init | |
log::success_exit | |
--7cc194c95b686cb8cd0d6ea9c3f6fa39f536324b4e0b333d8deffb59e355 | |
content-type: text/x-include-url | |
file:///etc/secret-userdata.txt | |
--7cc194c95b686cb8cd0d6ea9c3f6fa39f536324b4e0b333d8deffb59e355-- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment