-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
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
Request: aws_regions (plural) data source which can be filtered by product. #3763
Comments
Sounds like an interesting use case! Are you able to explain how you were planning on using this within Terraform? This seems like it might be possible using the # Not implemented - may have different interface in the future
data "aws_regions" "ec2" {
service_name = "ec2"
}
output "ec2_regions" {
value = "${join(",", data.aws_regions.ec2.regions)}"
} |
Thank you for your quick reply. The security team wants to deploy their auditing application and ensure that it is running in every region. When new regions are available, they want it to be deployed in those new regions automatically. |
There is a caveat though, I do not believe its possible to automatically configure |
Other use case is having IAM policies update automatically. We use a naming convention for SSM logging buckets. To give the EC2 admins permissions I need to generate a list of buckets and I can't use remote state easily either. |
Hi folks 👋 A new |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Feature Request:
aws_regions (plural) data source which can be filtered by product.
Example of desired feature to return a list of regions that support EC2.
The text was updated successfully, but these errors were encountered: