Skip to content

Commit

Permalink
Merge pull request #133 from overmindtech/132-add-tags-to-items
Browse files Browse the repository at this point in the history
Added tags to items
  • Loading branch information
dylanratcliffe authored Oct 4, 2023
2 parents 58eebbe + fdfd28e commit 8d87553
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions items.proto
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ message Item {
// (optional) Represents the health of the item. Only items that have a
// clearly relevant health attribute should return a value for health
optional Health health = 18;

// Arbitrary key-value pairs that can be used to store additional information.
// These tags are retrieved from the source and map to the target's definition
// of a tag (e.g. AWS tags, Kubernetes labels, etc.)
map<string, string> tags = 19;
}

// ItemAttributes represents the known attributes for an item. These are likely
Expand Down

0 comments on commit 8d87553

Please sign in to comment.