Skip to content

Commit

Permalink
make aws config args not required
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabbytam committed Oct 16, 2023
1 parent e7b2de7 commit aaa21a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions target_s3_parquet/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ class TargetS3Parquet(Target):
description="The s3 path to the target output file",
required=True,
),
th.Property("aws_access_key_id", th.StringType, required=True),
th.Property("aws_access_key_id", th.StringType, required=False),
th.Property(
"aws_secret_access_key",
th.StringType,
required=True,
required=False,
),
th.Property("athena_database", th.StringType, required=True),
th.Property("add_record_metadata", th.BooleanType, default=None),
Expand Down

0 comments on commit aaa21a6

Please sign in to comment.