{"id":13513973,"url":"https://github.com/turbot/steampipe-plugin-steampipecloud","last_synced_at":"2025-03-31T02:33:12.268Z","repository":{"id":38187471,"uuid":"433901807","full_name":"turbot/steampipe-plugin-steampipecloud","owner":"turbot","description":"Use SQL to instantly query Steampipe Cloud resources across workspaces. Open source CLI. No DB required.","archived":true,"fork":false,"pushed_at":"2023-07-28T07:57:41.000Z","size":299,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-11-01T17:37:10.395Z","etag":null,"topics":["deprecated","hacktoberfest","postgresql","postgresql-fdw","sql","steampipe","steampipe-cloud","steampipe-plugin"],"latest_commit_sha":null,"homepage":"https://hub.steampipe.io/plugins/turbot/steampipecloud","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/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":"2021-12-01T16:26:38.000Z","updated_at":"2023-07-28T09:42:01.000Z","dependencies_parsed_at":"2024-06-21T02:07:39.124Z","dependency_job_id":"9668e5aa-9338-42f6-a59c-113f0d28cef2","html_url":"https://github.com/turbot/steampipe-plugin-steampipecloud","commit_stats":{"total_commits":49,"total_committers":8,"mean_commits":6.125,"dds":0.6326530612244898,"last_synced_commit":"f739feb851ed96e5487d1646fb9f1ca7783972be"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fsteampipe-plugin-steampipecloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fsteampipe-plugin-steampipecloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fsteampipe-plugin-steampipecloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fsteampipe-plugin-steampipecloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/turbot","download_url":"https://codeload.github.com/turbot/steampipe-plugin-steampipecloud/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246407400,"owners_count":20772126,"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":["deprecated","hacktoberfest","postgresql","postgresql-fdw","sql","steampipe","steampipe-cloud","steampipe-plugin"],"created_at":"2024-08-01T05:00:41.534Z","updated_at":"2025-03-31T02:33:07.743Z","avatar_url":"https://github.com/turbot.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# :warning: DEPRECATED\n\nThe Steampipe Cloud plugin has been deprecated as part of our [renaming](https://turbot.com/blog/2023/07/introducing-turbot-guardrails-and-pipes) of Steampipe Cloud to Turbot Pipes. Please use the [Turbot Pipes plugin](https://hub.steampipe.io/plugins/turbot/pipes) instead.\n\n---\n![image](https://hub.steampipe.io/images/plugins/turbot/steampipecloud-social-graphic.png)\n\n# Steampipe Cloud Plugin for Steampipe\n\nUse SQL to query workspaces, connections and more from Steampipe Cloud.\n\n- **[Get started →](https://hub.steampipe.io/plugins/turbot/steampipecloud)**\n- Documentation: [Table definitions \u0026 examples](https://hub.steampipe.io/plugins/turbot/steampipecloud/tables)\n- Community: [Join #steampipe on Slack →](https://turbot.com/community/join)\n- Get involved: [Issues](https://github.com/turbot/steampipe-plugin-steampipecloud/issues)\n\n## Quick start\n\nInstall the plugin with [Steampipe](https://steampipe.io):\n\n```shell\nsteampipe plugin install steampipecloud\n```\n\nRun a query:\n\n```sql\nselect\n  user_handle,\n  email,\n  status\nfrom\n  steampipecloud_organization_member\nwhere\n  status = 'accepted'\n```\n\n```\n\u003e select user_handle, email, status from steampipecloud_organization_member where status = 'accepted'\n+-------------+------------------+----------+\n| user_handle | email            | status   |\n+-------------+------------------+----------+\n| mario       | mario@turbot.com | accepted |\n| yoshi       | yoshi@turbot.com | accepted |\n+-------------+------------------+----------+\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/turbot/steampipe-plugin-steampipecloud.git\ncd steampipe-plugin-steampipecloud\n```\n\nBuild, which automatically installs the new version to your `~/.steampipe/plugins` directory:\n\n```\nmake\n```\n\nConfigure the plugin:\n\n```\ncp config/* ~/.steampipe/config\nvi ~/.steampipe/config/steampipecloud.spc\n```\n\nTry it!\n\n```\nsteampipe query\n\u003e .inspect steampipecloud\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\nPlease see the [contribution guidelines](https://github.com/turbot/steampipe/blob/main/CONTRIBUTING.md) and our [code of conduct](https://github.com/turbot/steampipe/blob/main/CODE_OF_CONDUCT.md). All contributions are subject to the [Apache 2.0 open source license](https://github.com/turbot/steampipe-plugin-steampipecloud/blob/main/LICENSE).\n\n`help wanted` issues:\n\n- [Steampipe](https://github.com/turbot/steampipe/labels/help%20wanted)\n- [Steampipe Cloud Plugin](https://github.com/turbot/steampipe-plugin-steampipecloud/labels/help%20wanted)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fsteampipe-plugin-steampipecloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fturbot%2Fsteampipe-plugin-steampipecloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fsteampipe-plugin-steampipecloud/lists"}