Skip to content

Commit 4cbc18b

Browse files
authoredNov 27, 2024
[CI] BK integration tests: ESS deployment adjustments (#6150)
* [CI] BK integration tests: made ESS deployment equat to the ess_provisioner * Added integrations server configuration id
1 parent 0f5fbd7 commit 4cbc18b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed
 

‎test_infra/ess/deployment.tf

+8-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ locals {
4242
deployment_version = data.ec_stack.latest.version
4343

4444
ess_region = coalesce(var.ess_region, "gcp-us-east1")
45-
deployment_template_id = coalesce(var.deployment_template_id, "gcp-cpu-optimized")
45+
deployment_template_id = coalesce(var.deployment_template_id, "gcp-storage-optimized")
4646
}
4747

4848
# If we have defined a stack version, validate that this version exists on that region and return it.
@@ -59,17 +59,19 @@ resource "ec_deployment" "integration-testing" {
5959
version = local.deployment_version
6060

6161
elasticsearch = {
62-
autoscale = false
62+
autoscale = false
63+
instance_configuration_id = "gcp.es.datahot.n2.68x10x45"
6364

6465
hot = {
6566
autoscaling = {}
66-
size = "4g"
67+
size = "8g"
6768
zone_count = 1
6869
}
6970
}
7071
kibana = {
71-
size = "1g"
72-
zone_count = 1
72+
size = "1g"
73+
zone_count = 1
74+
instance_configuration_id = "gcp.kibana.n2.68x32x45"
7375
config = {
7476
user_settings_json = jsonencode({
7577
"xpack.fleet.enableExperimental" = ["agentTamperProtectionEnabled"]
@@ -80,6 +82,7 @@ resource "ec_deployment" "integration-testing" {
8082
}
8183

8284
integrations_server = {
85+
instance_configuration_id = "gcp.integrationsserver.n2.68x32x45"
8386
topology = {
8487
size = "1g"
8588
zone_count = 1

0 commit comments

Comments
 (0)