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
Right now, programgen writes these imports:
import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*;
It would great if it generated the fully qualified names of the resources that it is using. i.e.
import java.util.List; import java.util.Map; import java.nio.Paths; import com.pulumi.aws.s3.Bucket; import com.pulumi.aws.s3.BucketArgs; // etc.
programgen
The text was updated successfully, but these errors were encountered:
Zaid-Ajaj
Successfully merging a pull request may close this issue.
Hello!
Issue details
Right now, programgen writes these imports:
It would great if it generated the fully qualified names of the resources that it is using. i.e.
Affected area/feature
programgen
The text was updated successfully, but these errors were encountered: