We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1880447 commit d03cc19Copy full SHA for d03cc19
mmv1/api/resource.go
@@ -2202,6 +2202,11 @@ func (r Resource) TGCTestIgnorePropertiesToStrings(e resource.Examples) []string
2202
props = append(props, google.Underscore(tp.Name))
2203
} else if tp.IsMissingInCai {
2204
props = append(props, tp.MetadataLineage())
2205
+ } else if tp.IgnoreRead {
2206
+ if tp.Sensitive || tp.Name == "tags" {
2207
+ // TODO: handle tags conversion, which are separate Cai assets with resources.
2208
+ props = append(props, tp.MetadataLineage())
2209
+ }
2210
}
2211
2212
props = append(props, e.TGCTestIgnoreExtra...)
0 commit comments