Open
Description
With the default mapping provided by this integration, any resource that have a tag name containing a dot will cause a mapper_parsing_exception and will fail to index.
To avoid this issue, the following option can be added to the mapping :
{
"mappings": {
"properties": {
"azure": {
"properties": {
"resource": {
"properties": {
"tags": {
"subobjects": false
}
}
}
}
}
}
}
}
Of course this requires Elasticsearch >= 8.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment