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
When on the Provider logic we fetch all the IDs we should also store a value that represents the name of set resource.
As an example on https://github.com/cycloidio/terracognita/blob/master/aws/resources.go#L935 which is for aws_db_instance the id is DBInstanceIdentifier but we can also store the DBName alongside so we have a user friendly representation of the ID which most of the times is not readable.
aws_db_instance
DBInstanceIdentifier
DBName
This will be helpful for logging/debugging and for 3rd party users of TC
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Abstract
When on the Provider logic we fetch all the IDs we should also store a value that represents the name of set resource.
Proposal
As an example on https://github.com/cycloidio/terracognita/blob/master/aws/resources.go#L935 which is for
aws_db_instance
the id isDBInstanceIdentifier
but we can also store theDBName
alongside so we have a user friendly representation of the ID which most of the times is not readable.This will be helpful for logging/debugging and for 3rd party users of TC
Implementation
Open issues (if applicable)
The text was updated successfully, but these errors were encountered: