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
| Plug in cooker. | |
| Cooker powers on momentarily and is unusable. | |
| Fill water to MAX port. | |
| Touch POWER button for 5 seconds. | |
| Cooker powers on and is usable. | |
| Touch POWER and SET. | |
| SET TEMP field flashes. | |
| Units toggle between °C & °F. | |
| Turn wheel. | |
| Field value changes. |
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
| #!/bin/bash | |
| role_name=`curl -s http://169.254.169.254/latest/meta-data/iam/security-credentials/` | |
| creds=`curl -s http://169.254.169.254/latest/meta-data/iam/security-credentials/$role_name` | |
| current_region=`curl -s http://169.254.169.254/latest/dynamic/instance-identity/document | jq -c -r .region` | |
| export AWS_ACCESS_KEY_ID=`printf "%s" "$creds" | jq -r .AccessKeyId` | |
| export AWS_SECRET_ACCESS_KEY=`printf "%s" "$creds" | jq -r .SecretAccessKey` | |
| export AWS_SESSION_TOKEN=`printf "%s" "$creds" | jq -r .Token` | |
| export AWS_DEFAULT_REGION=$current_region |
OlderNewer