cloudforet-io / plugin-aws-ec2-inven-collector

Plugin for AWS EC2
Apache License 2.0
6 stars 4 forks source link

Refactoring Tags #8

Closed jihyungSong closed 1 year ago

jihyungSong commented 2 years ago
  1. Tag data format has been changed as follows.

# AS-IS
"tags": [
   { "key": "xxxxx", "value": "yyyyyy"},
   { "key": "zzzz", "value": "aaaaaa"},
   { "key": "bbbbb", "value": "cccccccc"}
]

# TO-BE
"tags": {
        "xxxxx": "yyyyyy",
        "zzzz": "aaaaaa",
        "bbbbb": "cccccccc"
}
  1. The console display for Tag is merged into the "Tags" tab. tag information in metadata will be removed because redundant.