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
--region
region_name
If using a partition outside of aws & AWS_DEFAULT_REGION is not set, seedfarmer will fail on Session creation as sts.get_caller_identity() will fail.
aws
AWS_DEFAULT_REGION
sts.get_caller_identity()
seedfarmer apply {manifest_path} --region cn-north-1
get_caller_identity()
sts.get_caller_identity(region_name=region) if partition !="aws" else sts.get_caller_identity()
The text was updated successfully, but these errors were encountered:
aws-cn
Will close this unless it's deemed necessary.
Sorry, something went wrong.
malachi-constant
No branches or pull requests
Issue
If using a partition outside of
aws
&AWS_DEFAULT_REGION
is not set, seedfarmer will fail on Session creation assts.get_caller_identity()
will fail.Decision point
--region
inseedfarmer apply {manifest_path} --region cn-north-1
be passed toget_caller_identity()
?Potential Implementation
The text was updated successfully, but these errors were encountered: