-
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: iterator examples #2456
fix: iterator examples #2456
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.
I think this should use the other iterator type
examples/java/gradle-shared-module/gradle/wrapper/gradle-wrapper.properties
Show resolved
Hide resolved
94c63bf
to
9d5f561
Compare
9d5f561
to
1fe2b11
Compare
1fe2b11
to
a216fd4
Compare
This is failing on CSharp because of: aws/jsii#3870. we're currently on 1.71.0, while the fix is in 1.72.0. |
@mutahhir I think this needs a rebase :) |
4b0f14a
to
7bb0902
Compare
7bb0902
to
f1c8516
Compare
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. |
fixes #2452
Terraform only supports a set of strings, and maps with the
for_each
meta-argument.The way for CDKTF to support complex list iterators would be to implement a kind of for expression when synthesising the iterator with
for_each
, however that isn't currently supported.For now, this PR updates the example code to use maps instead of a complex list, until we implement the above.