Skip to content

Commit 6ee97d3

Browse files
authored
AWS CLI EC2 commands require region. (#157)
1 parent ea4f0ae commit 6ee97d3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

startupscript/aws/vm-metadata.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ function get_metadata_value_unprefixed() {
2525
imds_token="$(wget --method=PUT --header "X-aws-ec2-metadata-token-ttl-seconds:600" -q -O - http://169.254.169.254/latest/api/token)"
2626
local instance_id
2727
instance_id="$(wget --header "X-aws-ec2-metadata-token: ${imds_token}" -q -O - http://169.254.169.254/latest/meta-data/instance-id)"
28+
local region
29+
region="$(wget --header "X-aws-ec2-metadata-token: ${imds_token}" -q -O - http://169.254.169.254/latest/meta-data/placement/region)"
2830
aws ec2 describe-tags \
31+
--region "${region}" \
2932
--filters "Name=resource-id,Values=${instance_id}" "Name=key,Values=$1" \
3033
--query "Tags[0].Value" --output text 2>/dev/null
3134
}
@@ -56,9 +59,12 @@ function set_metadata() {
5659
token=$(wget --method=PUT --header "X-aws-ec2-metadata-token-ttl-seconds:600" -q -O - http://169.254.169.254/latest/api/token)
5760
local id
5861
id=$(wget --header "X-aws-ec2-metadata-token: ${token}" -q -O - http://169.254.169.254/latest/meta-data/instance-id)
62+
local region
63+
region="$(wget --header "X-aws-ec2-metadata-token: ${token}" -q -O - http://169.254.169.254/latest/meta-data/placement/region)"
5964

6065
aws ec2 create-tags \
66+
--region "${region}" \
6167
--resources "${id}" \
6268
--tags Key="\"vwbapp:${key}\",Value=\"${escaped}\""
6369
}
64-
readonly -f set_metadata
70+
readonly -f set_metadata

startupscript/setup-bashrc.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ if [[ "${CLOUD}" == "aws" && "${LOG_IN}" == "true" ]]; then
7878
# Create a symlink to this workspace's AWS config file to use as the target for AWS_CONFIG_FILE.
7979
readonly AWS_CONFIG_SYMLINK="${USER_WORKBENCH_CONFIG_DIR}/workspace.conf"
8080
${RUN_AS_LOGIN_USER} "eval \$(wb workspace configure-aws) && \
81-
ln -s \${AWS_CONFIG_FILE} ${AWS_CONFIG_SYMLINK}"
81+
ln -sf \${AWS_CONFIG_FILE} ${AWS_CONFIG_SYMLINK}"
8282

8383
emit "Adding Workbench AWS-sepcific environment variables to ~/.bashrc ..."
8484

@@ -91,5 +91,3 @@ export AWS_VAULT_FILE_PASSPHRASE=""
9191
EOF
9292

9393
fi
94-
95-

0 commit comments

Comments
 (0)