{"id":18995617,"url":"https://github.com/turbot/flowpipe-mod-azure","last_synced_at":"2025-06-22T06:04:37.527Z","repository":{"id":212315732,"uuid":"705452335","full_name":"turbot/flowpipe-mod-azure","owner":"turbot","description":"Azure pipeline library for the Flowpipe cloud scripting engine. Automation and workflows to connect Azure to the people, systems and data that matters.","archived":false,"fork":false,"pushed_at":"2024-12-13T12:07:52.000Z","size":1415,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-06-22T06:04:29.718Z","etag":null,"topics":["automation","azure","azure-cli","cloud","devops","flowpipe","flowpipe-mod","hacktoberfest","integrations","low-code","orchestration","pipelines","security","workflow","workflow-automation","workflow-engine"],"latest_commit_sha":null,"homepage":"https://hub.flowpipe.io/mods/turbot/azure","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,"zenodo":null}},"created_at":"2023-10-16T03:08:47.000Z","updated_at":"2024-12-13T12:03:04.000Z","dependencies_parsed_at":"2024-06-28T08:02:04.580Z","dependency_job_id":"ff2a5349-2b4e-4c11-b65b-3f1adf475f5b","html_url":"https://github.com/turbot/flowpipe-mod-azure","commit_stats":null,"previous_names":["turbot/flowpipe-mod-azure"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/turbot/flowpipe-mod-azure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-azure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-azure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-azure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-azure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/turbot","download_url":"https://codeload.github.com/turbot/flowpipe-mod-azure/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-azure/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261244008,"owners_count":23129639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","azure","azure-cli","cloud","devops","flowpipe","flowpipe-mod","hacktoberfest","integrations","low-code","orchestration","pipelines","security","workflow","workflow-automation","workflow-engine"],"created_at":"2024-11-08T17:32:03.005Z","updated_at":"2025-06-22T06:04:32.481Z","avatar_url":"https://github.com/turbot.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Azure Mod for Flowpipe\n\nAzure pipeline library for [Flowpipe](https://flowpipe.io), enabling seamless integration of Azure services into your workflows.\n\n## Documentation\n\n- **[Pipelines →](https://hub.flowpipe.io/mods/turbot/azure/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### Connections\n\nBy default, the following environment variables will be used for authentication:\n\n- `AZURE_CLIENT_ID`\n- `AZURE_CLIENT_SECRET`\n- `AZURE_ENVIRONMENT`\n- `AZURE_TENANT_ID`\n\nYou can also create `connection` resources in configuration files:\n\n```sh\nvi ~/.flowpipe/config/azure.fpc\n```\n\n```hcl\nconnection \"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 connections in Flowpipe, please see [Managing Connections](https://flowpipe.io/docs/run/connections).\n\n### Usage\n\n[Initialize a mod](https://flowpipe.io/docs/build/index#initializing-a-mod):\n\n```sh\nmkdir my_mod\ncd my_mod\nflowpipe mod init\n```\n\n[Install the Azure mod](https://flowpipe.io/docs/build/mod-dependencies#mod-dependencies) as a dependency:\n\n```sh\nflowpipe mod install github.com/turbot/flowpipe-mod-azure\n```\n\n[Use the dependency](https://flowpipe.io/docs/build/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\" \"list_compute_virtual_machines\" {\n    pipeline = azure.pipeline.list_compute_virtual_machines\n    args = {\n      resource_group  = \"my-rg\"\n      subscription_id = \"abcdef01-2345-6789\"\n    }\n  }\n}\n```\n\n[Run the pipeline](https://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-azure.git\ncd flowpipe-mod-azure\n```\n\nList pipelines:\n\n```sh\nflowpipe pipeline list\n```\n\nRun a pipeline:\n\n```sh\nflowpipe pipeline run create_compute_virtual_machine --arg vm_name='VM Dev' --arg vm_image=Ubuntu2204 --arg subscription_id=1234-5678-9012-3456 --arg resource_group=my-rg\n```\n\nTo use a specific `connection`, specify the `conn` pipeline argument:\n\n```sh\nflowpipe pipeline run list_compute_virtual_machines --arg conn=connection.azure.azure_prod --arg subscription_id=1234-5678-9012-3456 --arg resource_group=my-rg\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- [Azure Mod](https://github.com/turbot/flowpipe-mod-azure/labels/help%20wanted)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-mod-azure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fturbot%2Fflowpipe-mod-azure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-mod-azure/lists"}