From 2058f97c30bc66b637f7c6e71fd2c9bd9ba642ed Mon Sep 17 00:00:00 2001 From: misraved Date: Wed, 13 Dec 2023 02:10:21 +0530 Subject: [PATCH] Fix the missing optional tag on plugin's connection config arguments --- terraform/connection_config.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/terraform/connection_config.go b/terraform/connection_config.go index b8fa662..6c30e7a 100644 --- a/terraform/connection_config.go +++ b/terraform/connection_config.go @@ -5,10 +5,10 @@ import ( ) type terraformConfig struct { - ConfigurationFilePaths []string `hcl:"configuration_file_paths" steampipe:"watch"` - Paths []string `hcl:"paths" steampipe:"watch"` - PlanFilePaths []string `hcl:"plan_file_paths" steampipe:"watch"` - StateFilePaths []string `hcl:"state_file_paths" steampipe:"watch"` + ConfigurationFilePaths []string `hcl:"configuration_file_paths,optional" steampipe:"watch"` + Paths []string `hcl:"paths,optional" steampipe:"watch"` + PlanFilePaths []string `hcl:"plan_file_paths,optional" steampipe:"watch"` + StateFilePaths []string `hcl:"state_file_paths,optional" steampipe:"watch"` } func ConfigInstance() interface{} {