-
Notifications
You must be signed in to change notification settings - Fork 252
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
Add tag property to newrelic resources that support tags #1420
Comments
This would bring it line with existing behaviour of other popular Terraform providers—such as AWS—wherein resources can be natively tagged on creation. In our monitoring estate, I can see this leading to wider adoption of workloads as well since we could better filter on tagged entities to render what's important. Thanks. |
I believe this is related to this issue #756 |
This issue has been automatically marked as stale because it has not had any recent activity. It will be closed if no further activity occurs. |
This issue has been automatically closed due to a lack of activity for an extended period of time. |
For us, this is related to #756 in that the synthetics are what we'd like to be able to tag. However, I don't believe this should depend on #756. It should be entirely possible to add a |
Support for tags has been added to the new Synthetics resources: https://registry.terraform.io/providers/newrelic/newrelic/latest/docs/guides/migration_guide_v3 As it is unlikely other API's will start supporting tags through their create/update mutations I'm going to close this ticket. As almost every resource now returns a GUID it should be possible to use the https://registry.terraform.io/providers/newrelic/newrelic/latest/docs/resources/entity_tags resource. If you encounter any API delays that stop you from using the |
Feature Description
Add a tags property to the newrelic terraform resources so we can set that on creation already.
Describe Alternatives
The way it works now is very uncomfortable, as you have to create the resource, await it being created, scrape the data source again to find its id and then use the newrelic_entity_tags resource to add tags.
Additional context
It would be great if we could add tags as a property in all resources in the newrelic provider that support tags.
The text was updated successfully, but these errors were encountered: