missing opening quote in sumologic_cse_tag_schema example
darianm23 opened this issue · 0 comments
darianm23 commented
resource "sumologic_cse_tag_schema" "tag_schema" {
key = "location"
label = "label"
content_types = ["entity"]
free_form = "true"
value_options {
value = "option value"
label = option label"
link = "http://foo.bar.com"
}
}
should instead read
resource "sumologic_cse_tag_schema" "tag_schema" {
key = "location"
label = "label"
content_types = ["entity"]
free_form = "true"
value_options {
value = "option value"
label = "option label"
link = "http://foo.bar.com"
}
}