-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
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
CfnCrawler: Missing parameter LakeFormationConfiguration in CDK Construct but present in aws cli #29246
Comments
This is what we have in the cloudformation spec for CfnCrawler and looks like there's no specific config for https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html |
Hey! Thanks for the quick reply! I tried to include it in the Configuration param but no luck, it says it is not a valid key for that Configuration dictionary parameter. Yes! I tried injecting it low level to the CF yml via code, but I also noticed that the CF docs don't have it. The GUI does though, and the CLI command exists, for now I am doing it via GUI, but it would be great to understand if this will be supported via IaC, or if there is another way of being sure that it is enabled This is where the CLI command reference is : https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html#crawler-lf-integ
It might be that they are quite new, there is also a LineageConfiguration param in this example, so those might be in queue to be added and still experimental, not sure |
this seems implemented thank you!! It looks like it's working! |
Comments on closed issues and PRs are hard for our team to see. |
Describe the issue
Hello!
We have aws docs explaining how to create a Crawler with LakeFormation Credentials via Console or AWS CLI, but there is no way of doing it via CDK yet.
The AWS CLI command is aws glue create-crawler --cli-input-json '{ ... "LakeFormationConfiguration" : {} ...}'
here's the reference Docs
Can this param be added to CDK CfnCrawler?
ToDo
Add 'LakeFormationConfiguration' parameter for CfnCrawler
Links
https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_glue.CfnCrawler.html
The text was updated successfully, but these errors were encountered: