File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,10 @@ function get_metadata_value_unprefixed() {
25
25
imds_token=" $( wget --method=PUT --header " X-aws-ec2-metadata-token-ttl-seconds:600" -q -O - http://169.254.169.254/latest/api/token) "
26
26
local instance_id
27
27
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) "
28
30
aws ec2 describe-tags \
31
+ --region " ${region} " \
29
32
--filters " Name=resource-id,Values=${instance_id} " " Name=key,Values=$1 " \
30
33
--query " Tags[0].Value" --output text 2> /dev/null
31
34
}
@@ -56,9 +59,12 @@ function set_metadata() {
56
59
token=$( wget --method=PUT --header " X-aws-ec2-metadata-token-ttl-seconds:600" -q -O - http://169.254.169.254/latest/api/token)
57
60
local id
58
61
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) "
59
64
60
65
aws ec2 create-tags \
66
+ --region " ${region} " \
61
67
--resources " ${id} " \
62
68
--tags Key=" \" vwbapp:${key} \" ,Value=\" ${escaped} \" "
63
69
}
64
- readonly -f set_metadata
70
+ readonly -f set_metadata
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ if [[ "${CLOUD}" == "aws" && "${LOG_IN}" == "true" ]]; then
78
78
# Create a symlink to this workspace's AWS config file to use as the target for AWS_CONFIG_FILE.
79
79
readonly AWS_CONFIG_SYMLINK=" ${USER_WORKBENCH_CONFIG_DIR} /workspace.conf"
80
80
${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} "
82
82
83
83
emit " Adding Workbench AWS-sepcific environment variables to ~/.bashrc ..."
84
84
@@ -91,5 +91,3 @@ export AWS_VAULT_FILE_PASSPHRASE=""
91
91
EOF
92
92
93
93
fi
94
-
95
-
You can’t perform that action at this time.
0 commit comments