Open
Description
openedon Nov 27, 2024
Describe the bug
Plugin is not fetching data from new region ap-southeast-5
Steampipe version (steampipe -v
)
Example: v1.0.0
Plugin version (steampipe plugin list
)
Example: v1.4.0
To reproduce
Create any resource in region ap-southeast-5
and try to fetch it using steampipe.
Expected behavior
The resource should be present in the result.
Additional context
Region ap-southeast-5
was made available last September so it is kind of new.
Querying select * from aws_region;
shows the region as opted-in
but still no data is being retrieved from there.
I've also tried using that region exclusively but that didn't work either:
connection "aws_default" {
plugin = "aws"
# `regions` defines the list of regions that Steampipe should target for
# each query. API calls are made to multiple regions in parallel. The regions
# list may include wildcards (e.g. *, us-*, us-??st-1).
# If `regions` is not specified, Steampipe will target the `default_region`
# only.
regions = ["ap-southeast-5"] # All regions
Activity