We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7934208 commit 7625ea2Copy full SHA for 7625ea2
1 file changed
core/integration/odc/plugin.go
@@ -186,7 +186,11 @@ func (p *Plugin) ObjectStack(data interface{}) (stack map[string]interface{}) {
186
// FIXME: this only copies over vars prefixed with "odc_"
187
// Figure out a better way!
188
for k, v := range varStack {
189
- if strings.HasPrefix(k, "odc_") {
+ if strings.HasPrefix(k, "odc_") &&
190
+ k != "odc_enabled" &&
191
+ k != "odc_resources" &&
192
+ k != "odc_plugin" &&
193
+ k != "odc_topology" {
194
arguments[strings.TrimPrefix(k, "odc_")] = v
195
}
196
0 commit comments