2 Answers
- Newest
- Most votes
- Most comments
2
Try running this in CloudShell to find all IAM Identity Center instances in enabled regions:
for region in `aws ec2 describe-regions --query 'Regions[].{Name:RegionName}' --output text`
do
echo -e "\n* ${region}"
aws sso-admin list-instances --region ${region}
done
1
Have you tried listing all of the IIC instances? https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html
aws sso-admin list-instances
You can also check more commands related to IIC on how to create or list the ones that already exist: https://docs.aws.amazon.com/cli/latest/reference/sso-admin/
Relevant content
- asked 5 months ago
- asked 3 months ago
- asked 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 9 months ago
I'm having the same issue, and I have run this script and confirmed that I'm using this region (us-west2) only and I'm on this region. Is there anyway to solve this?
Thank you, this worked. Then used
aws sso-admin delete-instance
to remove the instance and start again