https://github.com/ellisvalentiner/steampipe-plugin-confluence
Use SQL to instantly query Confluence.
https://github.com/ellisvalentiner/steampipe-plugin-confluence
confluence hacktoberfest steampipe steampipe-plugin
Last synced: 6 months ago
JSON representation
Use SQL to instantly query Confluence.
- Host: GitHub
- URL: https://github.com/ellisvalentiner/steampipe-plugin-confluence
- Owner: ellisvalentiner
- License: apache-2.0
- Created: 2021-10-01T14:29:38.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-02T13:19:04.000Z (7 months ago)
- Last Synced: 2025-04-19T17:58:10.053Z (6 months ago)
- Topics: confluence, hacktoberfest, steampipe, steampipe-plugin
- Language: Go
- Homepage:
- Size: 213 KB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Confluence Plugin for Steampipe
## Quick start
Install the plugin with Steampipe:
```sh
steampipe plugin install ellisvalentiner/confluence
```Run a query:
```sql
select
id,
title,
status,
type
from
confluence_content
```## Developing
Prerequisites:
* Steampipe
* GolangClone:
```sh
git clone https://github.com/ellisvalentiner/steampipe-plugin-confluence.git
cd steampipe-plugin-confluence
```Build, which automatically installs the new version to your `~/.steampipe/plugins` directory:
```sh
make
```Configure the plugin:
```sh
cp config/* ~/.steampipe/config
nano ~/.steampipe/config/confluence.spc
```Try it!
```sh
steampipe query
> .inspect confluence
```