{"id":43721580,"url":"https://github.com/theapsgroup/steampipe-plugin-vsphere","last_synced_at":"2026-02-05T08:10:29.105Z","repository":{"id":40482572,"uuid":"394694697","full_name":"theapsgroup/steampipe-plugin-vsphere","owner":"theapsgroup","description":"Use SQL to instantly query vSphere VMs, networks and more. Open source CLI. No DB required.","archived":false,"fork":false,"pushed_at":"2025-03-13T20:50:04.000Z","size":10919,"stargazers_count":6,"open_issues_count":1,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-13T21:36:48.266Z","etag":null,"topics":["golang","postgresql","postgresql-fdw","sql","steampipe","steampipe-plugin","vsphere"],"latest_commit_sha":null,"homepage":"https://hub.steampipe.io/plugins/theapsgroup/vsphere","language":"Go","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/theapsgroup.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":"2021-08-10T14:59:13.000Z","updated_at":"2025-03-13T20:50:09.000Z","dependencies_parsed_at":"2024-06-19T13:34:54.754Z","dependency_job_id":"1b1da386-d285-413f-9646-db44234d3d61","html_url":"https://github.com/theapsgroup/steampipe-plugin-vsphere","commit_stats":{"total_commits":46,"total_committers":6,"mean_commits":7.666666666666667,"dds":0.5652173913043479,"last_synced_commit":"7d0c51b718e580cb21329348400daceec6b28e3d"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/theapsgroup/steampipe-plugin-vsphere","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-vsphere","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-vsphere/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-vsphere/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-vsphere/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theapsgroup","download_url":"https://codeload.github.com/theapsgroup/steampipe-plugin-vsphere/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-vsphere/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29116452,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T05:31:32.482Z","status":"ssl_error","status_checked_at":"2026-02-05T05:31:29.075Z","response_time":65,"last_error":"SSL_read: 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":["golang","postgresql","postgresql-fdw","sql","steampipe","steampipe-plugin","vsphere"],"created_at":"2026-02-05T08:10:28.451Z","updated_at":"2026-02-05T08:10:29.097Z","avatar_url":"https://github.com/theapsgroup.png","language":"Go","readme":"![image](https://hub.steampipe.io/images/plugins/theapsgroup/vsphere-social-graphic.png)\n# vSphere plugin for Steampipe\n\nUse SQL to query information about your vSphere resources.\n\n- **[Get started →](https://hub.steampipe.io/plugins/theapsgroup/vsphere)**\n- Documentation: [Table definitions \u0026 examples](https://hub.steampipe.io/plugins/theapsgroup/vsphere/tables)\n- Community: [Join #steampipe on Slack →](https://turbot.com/community/join)\n- Get involved: [Issues](https://github.com/theapsgroup/steampipe-plugin-vsphere/issues)\n\n## Quick start\n\nInstall the plugin with [Steampipe](https://steampipe.io/downloads):\n\n```shell\nsteampipe plugin install theapsgroup/vsphere\n```\n\n[Configure the plugin](https://hub.steampipe.io/plugins/theapsgroup/vsphere#configuration) using the configuration file:\n\n```shell\nvi ~/.steampipe/vsphere.spc\n```\n\nOr environment variables:\n\n```shell\nexport VSPHERE_SERVER=10.20.30.40\nexport VSPHERE_USER=bob\nexport VSPHERE_PASSWORD=s0m3p@ss\n```\n\nStart Steampipe:\n\n```shell\nsteampipe query\n```\n\nRun a query:\n\n```sql\nselect\n  name,\n  num_cpu,\n  ip_address\nfrom\n  vsphere_vm;\n```\n\n## Developing\n\nPrerequisites:\n\n* [Steampipe](https://steampipe.io/downloads)\n* [Golang](https://golang.org/doc/install)\n\nClone:\n\n```sh\ngit clone https://github.com/theapsgroup/steampipe-plugin-vsphere.git\ncd steampipe-plugin-vsphere\n```\n\nBuild, which automatically installs the new version to your `~/.steampipe/plugins` directory:\n\n```sh\nmake\n```\n\nConfigure the plugin:\n\n```sh\ncp config/* ~/.steampipe/config\nvi ~/.steampipe/config/vsphere.spc\n```\n\nTry it!\n\n```shell\nsteampipe query\n\u003e .inspect vsphere\n```\n\nFurther reading:\n\n* [Writing plugins](https://steampipe.io/docs/develop/writing-plugins)\n* [Writing your first table](https://steampipe.io/docs/develop/writing-your-first-table)\n\n## Contributing\n\nAll contributions are subject to the [Apache 2.0 open source license](https://github.com/turbot/steampipe-plugin-github/blob/main/LICENSE).\n\n## Credits\n\nA Go library for interacting with VMware vSphere APIs [govmomi](https://github.com/vmware/govmomi) (licensed separately using this [Apache License](https://github.com/vmware/govmomi/blob/master/LICENSE.txt))\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheapsgroup%2Fsteampipe-plugin-vsphere","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheapsgroup%2Fsteampipe-plugin-vsphere","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheapsgroup%2Fsteampipe-plugin-vsphere/lists"}