8 lines
177 B
Bash
Executable file
8 lines
177 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Wait a bit for the ACCESS KEY to be usable on AWS
|
|
sleep 10
|
|
|
|
export AWS_CONFIG_FILE="${PWD}/test/aws_config"
|
|
aws sts get-caller-identity
|