» google_projects
Retrieve information about a set of projects based on a filter. See the REST API for more details.
» Example Usage - searching for projects about to be deleted in an org
data "google_projects" "my-org-projects" {
filter = "parent.id:012345678910 lifecycleState:DELETE_REQUESTED"
}
data "google_project" "deletion-candidate" {
project_id = "${data.google_projects.my-org-projects.projects.0.project_id}"
}
» Argument Reference
The following arguments are supported:
» Attributes Reference
The following attributes are exported:
-
projects
- A list of projects matching the provided filter. Structure is defined below.
The projects
block supports:
-
project_id
- The project id of the project.