{"id":25919751,"url":"https://github.com/danijeldragicevic/aws-users-manager","last_synced_at":"2026-05-15T07:01:48.302Z","repository":{"id":279704100,"uuid":"939677435","full_name":"danijeldragicevic/aws-users-manager","owner":"danijeldragicevic","description":"Spring Boot application to fetch AWS IAM users via a REST API","archived":false,"fork":false,"pushed_at":"2025-02-26T23:35:15.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-02T16:24:46.030Z","etag":null,"topics":["aws-iam","dva-c02","spring-boot","spring-rest"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danijeldragicevic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-26T23:28:13.000Z","updated_at":"2025-02-26T23:37:26.000Z","dependencies_parsed_at":"2025-02-27T00:30:45.620Z","dependency_job_id":"00c649b1-79d2-42a7-a011-c00b7fda84f2","html_url":"https://github.com/danijeldragicevic/aws-users-manager","commit_stats":null,"previous_names":["danijeldragicevic/aws-users-manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/danijeldragicevic/aws-users-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danijeldragicevic%2Faws-users-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danijeldragicevic%2Faws-users-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danijeldragicevic%2Faws-users-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danijeldragicevic%2Faws-users-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danijeldragicevic","download_url":"https://codeload.github.com/danijeldragicevic/aws-users-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danijeldragicevic%2Faws-users-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33057417,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-15T02:00:06.351Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws-iam","dva-c02","spring-boot","spring-rest"],"created_at":"2025-03-03T15:15:58.199Z","updated_at":"2026-05-15T07:01:48.271Z","avatar_url":"https://github.com/danijeldragicevic.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS Users Manager\n## Overview\nAWS Users Manager is a Spring Boot application that retrieves IAM users from an AWS account and exposes them through a REST API. \nIt fetches user details such as username, user ID, MFA status, and group memberships.\n\n## Features\n- Fetches IAM users from AWS\n- Returns user details in JSON format\n- Handles exceptions and provides structured error responses\n\n## Prerequisites\nEnsure you have the following installed and configured:\n- Java 17 or higher\n- Maven 3.9.0 or higher\n- AWS CLI configured with appropriate IAM credentials\n\n## Installation \u0026 Setup\nClone the repository:\n```commandline\ngit clone https://github.com/danijeldragicevic/aws-users-manager.git\ncd aws-users-manager\n```\nBuild the project:\n```commandline\nmvn clean install\n```\nRun the application:\n```commandline\nmvn spring-boot:run\n```\n## API Usage\n### Get all IAM users\nEndpoint: `GET /users` \u003cbr\u003e\nExample Request:\n```commandline\ncurl -X GET http://localhost:8080/users\n```\nExample Response:\n```commandline\n[\n  {\n    \"userName\": \"john.doe\",\n    \"userId\": \"AID123456789\",\n    \"mfaEnabled\": true,\n    \"groups\": [\"admins\", \"developers\"]\n  },\n  {\n    \"userName\": \"jane.smith\",\n    \"userId\": \"AID987654321\",\n    \"mfaEnabled\": false,\n    \"groups\": []\n  }\n]\n```\n## Error Handling\nThe application provides meaningful error responses.\nExample of a 404 Not Found response:\n```commandline\n{\n  \"timestamp\": \"2024-02-24T12:00:00\",\n  \"status\": 404,\n  \"message\": \"Resource not found\",\n  \"path\": \"/invalid-endpoint\"\n}\n```\n## Running Tests\nThe project includes JUnit tests for repositories, services, controllers, and exception handling.\nRun tests with:\n```commandline\nmvn test\n```\n## Contributing\nContributions are welcome! Feel free to submit a pull request or open an issue.\n\n## License\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanijeldragicevic%2Faws-users-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanijeldragicevic%2Faws-users-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanijeldragicevic%2Faws-users-manager/lists"}