35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# Title: Cloud - check_aws_ecs
|
|
# ID: check_aws_ecs
|
|
# Author: Carlos Polop
|
|
# Last Update: 22-08-2023
|
|
# Description: Check if the script is running in AWS ECS
|
|
# License: GNU GPL
|
|
# Version: 1.0
|
|
# Functions Used:
|
|
# Global Variables:
|
|
# Initial Functions:
|
|
# Generated Global Variables: $is_aws_ecs, $aws_ecs_metadata_uri, $aws_ecs_service_account_uri
|
|
# Fat linpeas: 0
|
|
# Small linpeas: 1
|
|
|
|
|
|
check_aws_ecs(){
|
|
is_aws_ecs="No"
|
|
if (env | grep -q ECS_CONTAINER_METADATA_URI_v4); then
|
|
is_aws_ecs="Yes";
|
|
aws_ecs_metadata_uri=$ECS_CONTAINER_METADATA_URI_v4;
|
|
aws_ecs_service_account_uri="http://169.254.170.2$AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"
|
|
|
|
elif (env | grep -q ECS_CONTAINER_METADATA_URI); then
|
|
is_aws_ecs="Yes";
|
|
aws_ecs_metadata_uri=$ECS_CONTAINER_METADATA_URI;
|
|
aws_ecs_service_account_uri="http://169.254.170.2$AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"
|
|
|
|
elif (env | grep -q AWS_CONTAINER_CREDENTIALS_RELATIVE_URI); then
|
|
is_aws_ecs="Yes";
|
|
fi
|
|
|
|
if [ "$AWS_CONTAINER_CREDENTIALS_RELATIVE_URI" ]; then
|
|
aws_ecs_service_account_uri="http://169.254.170.2$AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"
|
|
fi
|
|
} |