-
Notifications
You must be signed in to change notification settings - Fork 459
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
fix(provider-generator): java akamai provider generation #3185
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change looks good to me, but I would prefer no new example to be added (I normally start a new project with cdktf init and test it there with the local CLI)
Signed-off-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
d3f0ae0
to
936a67e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should also mention this in the changelog :)
I'm going to lock this pull request because it has been closed for 30 days. This helps our maintainers find and focus on the active issues. If you've found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Related issue
Fixes #3115
Description
Generation of Akamai provider fails to compile in Java since the the software field on the DNS resource config is confused with the JSII Java runtime package by the compiler.
Fix
Add the attribute name
software
to our list of escaped attributes.Other Notes
Added the example
java/akamai-gradle
to demonstrate that the fix works. Guessing it isn't worth keeping around so planning on removing it before merging.