We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://api.github.com/nanlabs/aws-glue-etl-boilerplate/blob/228e97dc1f6fafbc714c17f2b3c01cabd8db2213/libs/config/config.py#L52
""" return { **self.aws_client_vars, "bucket_name": self.env.get_var("S3_BUCKET_NAME"), } @cached_property def documentdb_vars(self) -> dict: """ Get connection parameters for the Database. :return: A json with the connection parameters. """ # TODO: Use the secrets manager to get the connection parameters for the database. return { "engine": self.env.get_var("DOCUMENT_DB_ENGINE"), "host": self.env.get_var("DOCUMENT_DB_HOST"), "port": self.env.get_var("DOCUMENT_DB_PORT"), "database": self.env.get_var("DOCUMENT_DB_NAME"), "user": self.env.get_var("DOCUMENT_DB_USERNAME"), "password": self.env.get_var("DOCUMENT_DB_PASSWORD"), "ssl": self.env.get_var("DOCUMENT_DB_SSL") == "true", } @cached_property def postgresdb_vars(self) -> dict: """ Get connection parameters for the Database. :return: A json with the connection parameters. """ # TODO: Use the secrets manager to get the connection parameters for the database. return { "engine": self.env.get_var("POSTGRES_DB_ENGINE"), "host": self.env.get_var("POSTGRES_DB_HOST"), "port": self.env.get_var("POSTGRES_DB_PORT"), "database": self.env.get_var("POSTGRES_DB_NAME"), "user": self.env.get_var("POSTGRES_DB_USERNAME"), "password": self.env.get_var("POSTGRES_DB_PASSWORD"), } config_instance = None
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://api.github.com/nanlabs/aws-glue-etl-boilerplate/blob/228e97dc1f6fafbc714c17f2b3c01cabd8db2213/libs/config/config.py#L52
The text was updated successfully, but these errors were encountered: