Reputation: 7951
I am running the glue pyspark script from my local machine using the GlueETL library.
When creating a dataframe from glue catalog,
dyf_user_book_reading_stat = glueContext.create_dynamic_frame.from_catalog(
database="xxx-db",
table_name="xxx_table"
)
I'm getting this error
GlueContext: Glue secret manager integration: secretId is not provided.
What is the secretId that it is asking for and how to provide it?
Upvotes: 3
Views: 858