-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey. I just saw this. We usually have github issues, not Discussion threads. But are you referring to AWSTags? we have a sync module specifically for importing and attaching nodes with data fetched from AWS's resource tagging api. Let's continue the discussion in a github issue you create. |
Beta Was this translation helpful? Give feedback.
-
I'll answer this question (even though it's like 2 years after, oops sorry): You can definitely query for tags attached to an EC2 instance like this: match (i:EC2Instance)--(t:AWSTag) return i.instanceid, t.key, t.value limit 30; See the schema docs for more details on the nodes and rels that we define. The sync job that populates this is called |
Beta Was this translation helpful? Give feedback.
I'll answer this question (even though it's like 2 years after, oops sorry):
You can definitely query for tags attached to an EC2 instance like this:
See the schema docs for more details on the nodes and rels that we define. The sync job that populates this is called
resourcegroupstaggingapi
.