You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
If you are interested in working on this issue or have submitted a pull request, please leave a comment.
If an issue is assigned to a user, that user is claiming responsibility for the issue.
Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.
locals {
# Project for test deploymentproject_id="example-project"# Create a list with 30 elements used for deploying service accountsservice_accounts=[
foriinrange(30) :"example-${format("%02d", i +1)}-test"
]
}
# Deploy service accountsresource"google_service_account""test" {
for_each=toset(local.service_accounts)
account_id=each.valueproject=local.project_id
}
# Query service accountsdata"google_service_accounts""test" {
project=local.project_iddepends_on=[
google_service_account.test,
]
}
Debug Output
No response
Expected Behavior
If more than 20 service accounts exist in a project, all service accounts should be covered
Actual Behavior
If more than 20 service accounts exist in a project, only 20 are covered
bestefreund
changed the title
Missing pagination support for data_google_service_accounts
Missing pagination support for data source google_service_accounts
Jan 15, 2025
Community Note
Terraform Version & Provider Version(s)
Terraform v1.10.4
on x64
Affected Resource(s)
google_service_accounts
data sourceTerraform Configuration
Debug Output
No response
Expected Behavior
If more than 20 service accounts exist in a project, all service accounts should be covered
Actual Behavior
If more than 20 service accounts exist in a project, only 20 are covered
Steps to reproduce
The result is
20
but should be at least30
, if the example from the Terraform configuration is used.Important Factoids
No response
References
No response
The text was updated successfully, but these errors were encountered: