-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #233 from sudiptob2/feat/231/service-account-crawl…
…-factory Feat/231/service account crawl factory
- Loading branch information
Showing
5 changed files
with
69 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
import logging | ||
import sys | ||
from typing import List, Dict, Any | ||
|
||
from googleapiclient import discovery | ||
|
||
from gcp_scanner.crawler.interface_crawler import ICrawler | ||
|
||
|
||
class ServiceAccountsCrawler(ICrawler): | ||
"""Handle crawling of service accounts data.""" | ||
|
||
def crawl(self, project_name: str, service: discovery.Resource) -> List[Dict[str, Any]]: | ||
"""Retrieve a list of service accounts in the project. | ||
Args: | ||
project_name: The name of the project to query information about. | ||
service: A resource object for interacting with the GCP API. | ||
Returns: | ||
A list of resource objects representing the crawled data. | ||
""" | ||
logging.info("Retrieving SA list %s", project_name) | ||
service_accounts = [] | ||
|
||
name = f"projects/{project_name}" | ||
|
||
try: | ||
request = service.projects().serviceAccounts().list(name=name) | ||
while request is not None: | ||
response = request.execute() | ||
service_accounts = [(service_account["email"], | ||
service_account.get("description", "")) | ||
for service_account in response.get("accounts", [])] | ||
|
||
request = service.projects().serviceAccounts().list_next( | ||
previous_request=request, previous_response=response) | ||
except Exception: | ||
logging.info("Failed to retrieve SA list for project %s", project_name) | ||
logging.info(sys.exc_info()) | ||
|
||
return service_accounts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters