Skip to content

Commit

Permalink
Merge branch 'master' into 'master'
Browse files Browse the repository at this point in the history
fixed example query

See merge request github/steampipe-plugin-openstack-github!5
  • Loading branch information
sven-ernw committed Jun 14, 2023
2 parents ef163aa + 23caf87 commit 8047944
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,21 @@ Run a query:
```sql
select
name,
description,
email,
enabled
from
openstack_user;
```

```
+-------------------+-----------------------------+---------+
| name | email | enabled |
+-------------------+-----------------------------+---------+
| demo | [email protected] | true |
| admin | [email protected] | true |
| reader | [email protected] | true |
+-------------------+-----------------------------+---------+
+-------------------+---------------------------+-----------------------------+---------+
| name | description | email | enabled |
+-------------------+---------------------------+-----------------------------+---------+
| demo | This is the demo user | [email protected] | true |
| admin | This is the admin user | [email protected] | true |
| reader | This is the readonly user | [email protected] | true |
+-------------------+---------------------------+-----------------------------+---------+
```

## Developing
Expand Down
14 changes: 7 additions & 7 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ from
```

```
+-------------------+-----------------------------+---------+
| name | email | enabled |
+-------------------+-----------------------------+---------+
| demo | [email protected] | true |
| admin | [email protected] | true |
| reader | [email protected] | true |
+-------------------+-----------------------------+---------+
+-------------------+---------------------------+-----------------------------+---------+
| name | description | email | enabled |
+-------------------+---------------------------+-----------------------------+---------+
| demo | This is the demo user | [email protected] | true |
| admin | This is the admin user | [email protected] | true |
| reader | This is the readonly user | [email protected] | true |
+-------------------+---------------------------+-----------------------------+---------+
```

## Documentation
Expand Down

0 comments on commit 8047944

Please sign in to comment.