You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to modify elasticstack_fleet_server_host.fleet_host to update the hosts value we receive {"statusCode":404,"error":"Not Found","message":"Not Found"}
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
resource "elasticstack_fleet_server_host" "fleet_host" {
name = "fleet"
default = true
hosts = [
"https://${local.fleet_server_name}-fleet-server-agent-http.elastic-system.svc:8220", // update this value
]
depends_on = [
helm_release.fleet_server
]
}
Expected behavior
We expect the value of hosts = [] to be modifiable
Screenshots
Versions (please complete the following information):
OS: [e.g. Linux] Ubuntu 24.04
Terraform Version: 1.85
Provider version: 0.11.9
Elasticsearch Version: 8.15.2
Additional context
We are also unable to delete this resource after its created.
The text was updated successfully, but these errors were encountered:
I was able to delete the fleet_server_host using the api - i also had to set default to false first.
GET kbn:/api/fleet/fleet_server_host
PUT kbn:/api/fleet/fleet_server_hosts/b1bfad95-0361-49bf-8d3d-060b2f41eb57
{
"is_default": false
}
DELETE kbn:/api/fleet/fleet_server_hosts/b1bfad95-0361-49bf-8d3d-060b2f41eb57
Describe the bug
When attempting to modify
elasticstack_fleet_server_host.fleet_host
to update the hosts value we receive{"statusCode":404,"error":"Not Found","message":"Not Found"}
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
We expect the value of hosts = [] to be modifiable
Screenshots
Versions (please complete the following information):
Additional context
We are also unable to delete this resource after its created.
The text was updated successfully, but these errors were encountered: