{"id":50769642,"url":"https://github.com/chadnpc/infisical","last_synced_at":"2026-06-11T17:01:02.073Z","repository":{"id":356856708,"uuid":"1234310373","full_name":"chadnpc/infisical","owner":"chadnpc","description":"[wip] [unofficial] PowerShell module for infisical secret management","archived":false,"fork":false,"pushed_at":"2026-05-10T06:13:15.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-10T06:42:37.099Z","etag":null,"topics":["infisical","secrets-management"],"latest_commit_sha":null,"homepage":"https://app.infisical.com/","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chadnpc.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-10T02:39:28.000Z","updated_at":"2026-05-10T06:13:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/chadnpc/infisical","commit_stats":null,"previous_names":["chadnpc/infisical"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/chadnpc/infisical","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chadnpc%2Finfisical","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chadnpc%2Finfisical/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chadnpc%2Finfisical/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chadnpc%2Finfisical/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chadnpc","download_url":"https://codeload.github.com/chadnpc/infisical/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chadnpc%2Finfisical/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34208761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"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":["infisical","secrets-management"],"created_at":"2026-06-11T17:01:01.295Z","updated_at":"2026-06-11T17:01:02.057Z","avatar_url":"https://github.com/chadnpc.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch2\u003e\n\u003cimg align=\"right\" width=\"120\" height=\"120\" alt=\"Icon\" src=\".github/logo.png\" /\u003e\n\u003c/h2\u003e\n\u003cdiv align=\"Left\"\u003e\n  \u003ca href=\"https://www.powershellgallery.com/packages/infisical\"\u003e\u003cb\u003einfisical\u003c/b\u003e\u003c/a\u003e\n  \u003cp\u003e\n    🔥 Blazingly fast PowerShell module to work with infisical.\n    \u003c/br\u003e\u003c/br\u003e\n    \u003ca href=\"https://www.powershellgallery.com/packages/infisical\"\u003e\n    \u003cimg src=\"https://img.shields.io/powershellgallery/dt/infisical.svg?style=flat\u0026logo=powershell\u0026color=blue\" alt=\"PowerShell Gallery\" title=\"PowerShell Gallery\" /\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n**📦 Installation**\n\n```PowerShell\n# Install from PSGallery\nInstall-Module infisical -Scope CurrentUser\n```\n\n**🚀 Features**\n\n- **Access Control.**\n   Fine-grained, identity-aware permissions for users and machines\n- **Secret Delivery.**\n   Access and manage secrets (Create, Read, Update, Delete)\n- **Public Key Infrastructure (PKI).**\n\n## quick usage (*wip)\n\n```powershell\n# cmdlet:\ninfisical login --method universal-auth\ninfisical init\ninfisical secrets list\n\n# just classes\n$client = [Infisical]::GetClient($url, $token)\n$secrets = $client.Secrets().ListAsync($opts).GetAwaiter().GetResult()\n```\n\nFull docs: [`./docs/README.md`.](./docs/README.md)\n\n## 🛠️ dev setup (contributors)\n\n```powershell\ngit clone https://github.com/chadnpc/infisical.git\ncd infisical\n```\n\nLoad environment variables first:\n\n```PowerShell\n#Requires -Modules clihelper.env\ncp .env.example .env\n# Edit .env with your credentials. You can get them from your [Twilio Console](https://console.twilio.com/).\nRead-Env .env | Set-Env\n\n# Import local module and run tests\nImport-Module ./infisical.psm1 -Force; ./Test-Module.ps1 -SkipBuildOutput\n```\n\n## Try it in your terminal\n\nOne-liner install and launch:\n\n```PowerShell\n# todo: add a one liner install and launch script\n```\n\n- cmdlet: `Invoke-infisicalCli` (aliases: `infisical`, `infisicalCli`).\n ex:\n\n  ```powershell\n  infisical GetApiUsageLimits\n  ```\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchadnpc%2Finfisical","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchadnpc%2Finfisical","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchadnpc%2Finfisical/lists"}