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 6103c5e commit c569c4cCopy full SHA for c569c4c
CHANGELOG.md
@@ -1,6 +1,8 @@
1
## 2.19.1 (Unreleased)
2
FEATURES:
3
* Add new optional `resolution_window` field to resource/sumologic_monitor (GH-418)
4
+BUG FIXES:
5
+* cse rules hard failing if passing tags with empty strings. (GH-444)
6
7
## 2.19.0 (September 20, 2022)
8
sumologic/sumologic_cse_rule_common.go
@@ -71,7 +71,9 @@ func resourceToStringArray(resourceStrings []interface{}) []string {
71
result := make([]string, len(resourceStrings))
72
73
for i, resourceString := range resourceStrings {
74
- result[i] = resourceString.(string)
+ if resourceString != nil {
75
+ result[i] = resourceString.(string)
76
+ }
77
}
78
79
return result
0 commit comments