Hey folks, I am trying to create an s3 source usi...
# airbyte-api
d
Hey folks, I am trying to create an s3 source using the terraform module and getting the following error:
Copy code
{"type":"<https://reference.airbyte.com/reference/errors#unprocessable-entity>","title":"unprocessable-entity","status":422,"detail":"The provided
│ configuration does not fulfill the specification. Errors: json schema validation failed when comparing the data to the json schema. \nErrors: $.start_date:
│ does not match the regex pattern ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{6}Z$ "}
I am defining the start_date in the yaml as:
Copy code
start_date  = "2023-09-06T00:00:00.000000Z"
but in the terraform logs it looks like its changing the date format to: "start_date":"2023-09-06T000000Z" and failing the regex validation. anyone have any ideas on why it would be doing this?
is the problem that its using the wrong validator, the s3 source connector expects this format 2023-09-06T000000.000000Z but the terraform airbyte provider is validating it against a regex that expects 2023-09-06T000000.00Z?