Nathan Wallace
Nathan Wallace
I'm trying to use a timeout in an input step: ``` step "input" "approve" { notifier = notifier[param.approver] type = "button" subject = param.subject prompt = param.prompt timeout = param.timeout...
I created an input step with an output block: ```hcl step "input" "approve" { notifier = notifier[param.approvers[0]] type = "button" subject = param.subject prompt = param.prompt option "approve" { label...
From [this thread](https://steampipe.slack.com/archives/C01UECB59A7/p1679679508408119), an example like this would be good on the net_http_request table: ``` The trick is to cast the response into JSONB . For example: > select response_body::jsonb...
Thought I'd try joining the `hackernews_new` table with the `net_http_request` table to try and send slack messages for new items ... fun idea, but unfortunately it doesn't work because of...
``` ~/src/steampipe-plugin-grafana $ STEAMPIPE_LOG=info steampipe query Welcome to Steampipe v0.8.0-rc.0 For more information, type .help > select * from grafana_user +----+-------------------+--------+--------+--------+--------+----------+-------------+-------------+---------------------+---------------------+---------------------+------------------ | id | email | name | login |...
We have an issue where timestamp columns create an error when set to nil. This happens for some rows only in the `github_release` table. But, I'm seeing that after enough...
I'm using v0.7.2 of steampipe and v1.4.1 of the SDK in development. I have this definition for a table: ``` func tableFastlyService(ctx context.Context) *plugin.Table { return &plugin.Table{ Name: "fastly_service", Description:...
This works great: ``` > select vpc_id, cidr_block, region from aws_vpc; +--------------+---------------+-----------+ | vpc_id | cidr_block | region | +--------------+---------------+-----------+ | vpc-af92a1d4 | 10.85.0.0/16 | us-east-1 | | vpc-a7025cc0 |...
I don't understand why the final query in this list doesn't work? ``` > select * from github_commit where repository_full_name = 'turbot/steampipe-plugin-aws' and sha = '7ae796c3e3b1aefbe60a5810ca8f971dbd05745f' +-----------------------------+------------------------------------------+--------------+---------------------+--------------------------------------------------------------------------------------------------------------------+---------- | repository_full_name |...
``` ~/src/steampipe-plugin-alicloud $ steampipe query Welcome to Steampipe v0.1.0 For more information, type .help > > select * from alicloud_vpc Error: pq: rpc error: code = Internal desc = 'List'...