From f3ac98f1fbdf724b011c11fa4913ff20b91b68d0 Mon Sep 17 00:00:00 2001 From: Jon Udell Date: Thu, 23 Jan 2025 14:42:55 -0800 Subject: [PATCH] remove prefix --- docs/manage/connection.md | 12 ------------ docs/manage/partition.md | 6 +++--- 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/docs/manage/connection.md b/docs/manage/connection.md index a290014..7ae2a54 100644 --- a/docs/manage/connection.md +++ b/docs/manage/connection.md @@ -22,17 +22,5 @@ connection "gcp" "gcp_my_other_project" { } ``` ->[!NOTE] -> out of scope for lw7? - -For Steampipe users, there is also a "connection import". -```hcl -connection_import "steampipe" { - source = "~/.steampipe/config/*.spc" - connections = ["*"] - prefix = "sp1_" -} -``` - A default connection, e.g. `connection.aws.default` always exists; it can be overridden in a `.tpc` file. Each plugin has its own default credential resolution. For AWS, credentials resolve in the SDK's order. diff --git a/docs/manage/partition.md b/docs/manage/partition.md index 852f102..55266e4 100644 --- a/docs/manage/partition.md +++ b/docs/manage/partition.md @@ -17,9 +17,9 @@ The partition has two labels: partition "aws_cloudtrail_log" "test" { source "aws_s3" { - connection = connection.aws.logs - bucket = "my-logs-bucket" - prefix = "optional/path" + connection = connection.aws.logs + bucket = "my-logs-bucket" + file_layout = "%{DATA}.json.gz" } }