An open API service indexing awesome lists of open source software.

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.

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
* Golang

Clone:

```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
```