1234567891011121314151617181920212223242526272829 |
- #!/usr/bin/env bash
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- set -euo pipefail
- . misc/shlib/shlib.bash
- ci_unimportant_heading "Assuming scratch AWS role"
- creds=$(aws sts assume-role --role-arn "$AWS_SCRATCH_ROLE_ARN" --duration-seconds 43200 --role-session-name ci)
- AWS_ACCESS_KEY_ID=$(jq -r '.Credentials.AccessKeyId' <<< "$creds")
- AWS_SECRET_ACCESS_KEY=$(jq -r '.Credentials.SecretAccessKey' <<< "$creds")
- AWS_SESSION_TOKEN=$(jq -r '.Credentials.SessionToken' <<< "$creds")
- export AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_SESSION_TOKEN AWS_DEFAULT_REGION
- echo "Role ARN: $AWS_SCRATCH_ROLE_ARN"
- echo "AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID"
- echo "AWS_SECRET_ACCESS_KEY=(${#AWS_SECRET_ACCESS_KEY} chars)"
- echo "AWS_SESSION_TOKEN=(${#AWS_SESSION_TOKEN} chars)"
|