ERROR][logstash.outputs.elasticsearch] Failed to install template. {:message=>"Unexpected character ('<' (code 60))

Hi,

In elastic 5.2.2 and localhost the attach .conf and .json srcipts tun ok But in elastic cloud trial 5.3 Don't work
Any suggestion

Thanks
Luis

Logstash

output {
elasticsearch {
user => "elastic"
password => "iqY4P"
action => "index"
hosts => "cloudelastic"
index => "biotagro"
workers => 1
template => "/home/luis/ELKtesting/geo_es_template1.json"
document_type => "ubicacion"
}
stdout {}
}

geo_es_template1.json

{
"template": "biot*",
"order": 1,
"settings": {
"number_of_shards": 1
},
"mappings": {
"ubicacion" : {
"properties" : {
"location" : {"type": "geo_point"}
}
}
}
}