Cloudlist - AWS - Option to Specify Region #536
Unanswered
alagujeeva
asked this question in
Q&A
Replies: 1 comment
-
|
Yes, cloudlist supports specifying AWS regions. You can set it in your provider config: # ~/.config/cloudlist/provider-config.yaml
- provider: aws
profile: default
# Specify only the regions you want
regions:
- us-east-1
- us-west-2
- eu-west-1If that doesn't work in your version, there are workarounds:
# ~/.aws/config
[default]
region = us-east-1
export AWS_DEFAULT_REGION=us-east-1
cloudlist -provider aws
cloudlist -provider aws -json | jq 'select(.region == "us-east-1" or .region == "us-west-2")'
cloudlist -provider aws -silent 2>/dev/nullNote: The behavior with SCPs depends on how your organization configured them. If the SCP returns an explicit deny, cloudlist should skip that region and move on. If it hangs or crashes, that's a bug worth reporting. Check go install -v github.com/projectdiscovery/cloudlist/cmd/cloudlist@latest |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello Everyone,
We've only enabled few regions in our AWS account and all other regions are restricted through Service Control Policies. I am not sure if the cloudlist supports specifying particular regions for querying!
Can you please assist me if I can specify only the regions I am interested in for using the cloudlist?
Thank you for your support in advance!
Beta Was this translation helpful? Give feedback.
All reactions