mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-12 07:40:48 -08:00
13 lines
243 B
Protocol Buffer
13 lines
243 B
Protocol Buffer
syntax = "proto3";
|
|
package tfplan;
|
|
|
|
option go_package = "github.com/aquasecurity/trivy/iac/scanners/terraformplan/snapshot/planproto";
|
|
|
|
message DynamicValue {
|
|
bytes msgpack = 1;
|
|
}
|
|
|
|
message Plan {
|
|
map<string, DynamicValue> variables = 2;
|
|
}
|