{"id":18995563,"url":"https://github.com/turbot/flowpipe-mod-entra","last_synced_at":"2026-03-01T13:01:58.867Z","repository":{"id":212317423,"uuid":"730355004","full_name":"turbot/flowpipe-mod-entra","owner":"turbot","description":"Microsoft Entra ID pipeline library for the Flowpipe cloud scripting engine. Automation and workflows to connect Microsoft Entra ID to the people, systems and data that matters.","archived":false,"fork":false,"pushed_at":"2024-10-22T12:39:05.000Z","size":33,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-02-21T12:18:12.051Z","etag":null,"topics":["automation","cloud","devops","entra","flowpipe","flowpipe-mod","hacktoberfest","integrations","low-code","microsoft-entra","orchestration","pipelines","security","workflow","workflow-automation","workflow-engine"],"latest_commit_sha":null,"homepage":"https://hub.flowpipe.io/mods/turbot/entra","language":"HCL","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/turbot.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2023-12-11T18:36:13.000Z","updated_at":"2024-10-22T09:29:52.000Z","dependencies_parsed_at":"2024-01-12T02:44:30.076Z","dependency_job_id":"26908cb5-3559-422b-8ead-8d4a6ccdd9f7","html_url":"https://github.com/turbot/flowpipe-mod-entra","commit_stats":{"total_commits":6,"total_committers":3,"mean_commits":2.0,"dds":0.5,"last_synced_commit":"6aedc0830d9b65a1ac02013068ad7c8205f65fcc"},"previous_names":["turbot/flowpipe-mod-entra"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/turbot/flowpipe-mod-entra","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-entra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-entra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-entra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-entra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/turbot","download_url":"https://codeload.github.com/turbot/flowpipe-mod-entra/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-entra/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29969700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T12:56:10.327Z","status":"ssl_error","status_checked_at":"2026-03-01T12:55:24.744Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["automation","cloud","devops","entra","flowpipe","flowpipe-mod","hacktoberfest","integrations","low-code","microsoft-entra","orchestration","pipelines","security","workflow","workflow-automation","workflow-engine"],"created_at":"2024-11-08T17:31:42.626Z","updated_at":"2026-03-01T13:01:58.851Z","avatar_url":"https://github.com/turbot.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Microsoft Entra ID Mod for Flowpipe\n\nMicrosoft Entra ID pipeline library for [Flowpipe](https://flowpipe.io), enabling seamless integration of Microsoft Entra ID services into your workflows.\n\n## Documentation\n\n- **[Pipelines →](https://hub.flowpipe.io/mods/turbot/entra/pipelines)**\n\n## Getting Started\n\n### Requirements\n\nDocker daemon must be installed and running. Please see [Install Docker Engine](https://docs.docker.com/engine/install/) for more information.\n\n### Installation\n\nDownload and install Flowpipe (https://flowpipe.io/downloads). Or use Brew:\n\n```sh\nbrew tap turbot/tap\nbrew install flowpipe\n```\n\n### Credentials\n\nBy default, the following environment variables will be used for authentication:\n\n- `AZURE_CLIENT_ID`\n- `AZURE_CLIENT_SECRET`\n- `AZURE_TENANT_ID`\n\nYou can also create `credential` resources in configuration files:\n\n```sh\nvi ~/.flowpipe/config/azure.fpc\n```\n\n```hcl\ncredential \"azure\" \"default\" {\n  client_id     = \"\u003cyour client id\u003e\"\n  client_secret = \"\u003cyour client secret\u003e\"\n  tenant_id     = \"\u003cyour tenant id\u003e\"\n}\n```\n\nFor more information on credentials in Flowpipe, please see [Managing Credentials](https://flowpipe.io/docs/run/credentials).\n\n### Usage\n\n[Initialize a mod](https://www.flowpipe.io/docs/mods/index#initializing-a-mod):\n\n```sh\nmkdir my_mod\ncd my_mod\nflowpipe mod init\n```\n\n[Install the Microsoft Entra ID mod](https://www.flowpipe.io/docs/mods/mod-dependencies#mod-dependencies) as a dependency:\n\n```sh\nflowpipe mod install github.com/turbot/flowpipe-mod-entra\n```\n\n[Use the dependency](https://www.flowpipe.io/docs/mods/write-pipelines/index) in a pipeline step:\n\n```sh\nvi my_pipeline.fp\n```\n\n```hcl\npipeline \"my_pipeline\" {\n\n  step \"pipeline\" \"get_user\" {\n    pipeline = entra.pipeline.get_user\n    args = {\n      user_id = \"abcdef01-2345-6789\"\n    }\n  }\n}\n```\n\n[Run the pipeline](https://www.flowpipe.io/docs/run/pipelines):\n\n```sh\nflowpipe pipeline run my_pipeline\n```\n\n### Developing\n\nClone:\n\n```sh\ngit clone https://github.com/turbot/flowpipe-mod-entra.git\ncd flowpipe-mod-entra\n```\n\nList pipelines:\n\n```sh\nflowpipe pipeline list\n```\n\nRun a pipeline:\n\n```sh\nflowpipe pipeline run get_user --arg user_id=abcdef01-2345-6789\n```\n\nTo use a specific `credential`, specify the `cred` pipeline argument:\n\n```sh\nflowpipe pipeline run get_user --arg cred=azure_profile --arg user_id=abcdef01-2345-6789\n```\n\n## Open Source \u0026 Contributing\n\nThis repository is published under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0). Please see our [code of conduct](https://github.com/turbot/.github/blob/main/CODE_OF_CONDUCT.md). We look forward to collaborating with you!\n\n[Flowpipe](https://flowpipe.io) is a product produced from this open source software, exclusively by [Turbot HQ, Inc](https://turbot.com). It is distributed under our commercial terms. Others are allowed to make their own distribution of the software, but cannot use any of the Turbot trademarks, cloud services, etc. You can learn more in our [Open Source FAQ](https://turbot.com/open-source).\n\n## Get Involved\n\n**[Join #flowpipe on Slack →](https://flowpipe.io/community/join)**\n\nWant to help but not sure where to start? Pick up one of the `help wanted` issues:\n\n- [Flowpipe](https://github.com/turbot/flowpipe/labels/help%20wanted)\n- [Microsoft Entra ID Mod](https://github.com/turbot/flowpipe-mod-entra/labels/help%20wanted)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-mod-entra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fturbot%2Fflowpipe-mod-entra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-mod-entra/lists"}