I'm trying to deploy a test environment on azure and I'm running into all kinds of problems. I first had issues passing self-signed certificates for the application gateway and kibana, but I found some hacky way around those.
Now, I can't make HTTP calls to the service because it's asking for a key. I go into the admin console to get an API key but it tells me the application is not enabled for that (what?!) and it directs me to change xpack.security.authc.api_key.enabled to true in the Elasticsearch.yml file.
So I follow the steps recommended here: Cannot Find elasticsearch.yml from ElasticStack in Azure to access that file. I was able to ssh to kibana, but when I tried to ssh to the node vm from there, I got Permission denied (publickey).
I did pass my admin username and ssh key like this when I created the resources:
"adminUsername":{"value":"$esAdminUsername"},
"authenticationType":{"value":"sshPublicKey"},
"sshPublicKey":{"value":"$SSH_KEY"}
I'm at a loss. I'd really appreciate any help on this.