You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
$ make genrm -f aws/internal/keyvaluetags/*_gen.gogo generate ./...
# github.com/terraform-providers/terraform-provider-aws/aws/internal/keyvaluetags./iam_tags.go:34:37: updatedTags.IgnoreAws().IamTags undefined (type KeyValueTags has no field or method IamTags)./iam_tags.go:69:37: updatedTags.IgnoreAws().IamTags undefined (type KeyValueTags has no field or method IamTags)aws/internal/keyvaluetags/key_value_tags.go:1: running "go": exit status 2GNUmakefile:13: recipe for target 'gen' failedmake: *** [gen] Error 1
This is caused by me adding iam_tags.go, which contains hand written custom tag functionality, in #11598. As this code references generated methods it fails to compile during the generate phase.
The text was updated successfully, but these errors were encountered:
We need to move the custom functionality to its own package - github.com/terraform-providers/terraform-provider-aws/aws/internal/keyvaluetags/custom?
bflad
added
bug
Addresses a defect in current functionality.
provider
Pertains to the provider itself, rather than any interaction with AWS.
and removed
needs-triage
Waiting for first response or review from a maintainer.
labels
Feb 5, 2020
Community Note
This is caused by me adding
iam_tags.go
, which contains hand written custom tag functionality, in #11598. As this code references generated methods it fails to compile during thegenerate
phase.The text was updated successfully, but these errors were encountered: