We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following error occurred when running ECS Exec Checker on Mac.
Could not connect to the endpoint URL: "https://sts.ap-notheast-1.amazonaws.com/"
Verified that the region setting for profile is correct.
$ aws configure get region ap-northeast-1
When using BSD sed, it seems that “r” is removed from ap-northeast-1 in the following places.
amazon-ecs-exec-checker/check-ecs-exec.sh
Line 128 in fc5fdde
“r” was not removed when gnu-sed was used.
$ aws configure get region | sed -e "s/\r//g" ap-notheast-1 $ brew install gnu-sed $ aws configure get region | gsed -e "s/\r//g" ap-northeast-1
I think it would be better to describe it in the prerequisites.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following error occurred when running ECS Exec Checker on Mac.
Verified that the region setting for profile is correct.
When using BSD sed, it seems that “r” is removed from ap-northeast-1 in the following places.
amazon-ecs-exec-checker/check-ecs-exec.sh
Line 128 in fc5fdde
“r” was not removed when gnu-sed was used.
I think it would be better to describe it in the prerequisites.
The text was updated successfully, but these errors were encountered: