mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
23 lines
908 B
Bash
Executable File
23 lines
908 B
Bash
Executable File
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src
|
|
|
|
set -o errexit
|
|
cat << EOF > aws_e2e_setup.json
|
|
{
|
|
"iam_auth_ecs_account" : "${iam_auth_ecs_account}",
|
|
"iam_auth_ecs_secret_access_key" : "${iam_auth_ecs_secret_access_key}",
|
|
"iam_auth_ecs_account_arn": "arn:aws:iam::557821124784:user/authtest_fargate_user",
|
|
"iam_auth_ecs_cluster": "${iam_auth_ecs_cluster}",
|
|
"iam_auth_ecs_task_definition": "${iam_auth_ecs_task_definition}",
|
|
"iam_auth_ecs_subnet_a": "${iam_auth_ecs_subnet_a}",
|
|
"iam_auth_ecs_subnet_b": "${iam_auth_ecs_subnet_b}",
|
|
"iam_auth_ecs_security_group": "${iam_auth_ecs_security_group}",
|
|
|
|
"iam_auth_assume_aws_account" : "${iam_auth_assume_aws_account}",
|
|
"iam_auth_assume_aws_secret_access_key" : "${iam_auth_assume_aws_secret_access_key}",
|
|
"iam_auth_assume_role_name" : "${iam_auth_assume_role_name}"
|
|
}
|
|
EOF
|