Skip to content

Commit 8b7b1ae

Browse files
committed
fix(tests): replace deprecated orchestrator_host
1 parent 56bcf38 commit 8b7b1ae

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/serverless-agent/fargate/workload-legacy/instrumented_load.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ data "sysdig_fargate_workload_agent" "containers_instrumented" {
3131
workload_agent_image = var.agent_workload_image
3232

3333
sysdig_access_key = var.access_key
34-
orchestrator_host = var.orchestrator_host
34+
collector_host = var.collector_host
3535
orchestrator_port = var.orchestrator_port
3636

3737
log_configuration {

examples/serverless-agent/fargate/workload-legacy/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ variable "agent_workload_image" {
4646
default = "quay.io/sysdig/workload-agent:latest"
4747
}
4848

49-
variable "orchestrator_host" {
49+
variable "collector_host" {
5050
description = "Orchestrator Host"
5151
}
5252

sysdig/data_source_sysdig_fargate_workload_agent_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ func getFargateWorkloadAgentOrchestrated() string {
6262
data "sysdig_fargate_workload_agent" "test" {
6363
container_definitions = "[]"
6464
65-
orchestrator_host = "sysdig.orchestrator.agent.com"
66-
orchestrator_port = 6667
65+
collector_host = "sysdig.orchestrator.agent.com"
66+
collector_port = "6667"
6767
workload_agent_image = "quay.io/sysdig/workload-agent:latest"
6868
sysdig_logging = "info"
6969
}

0 commit comments

Comments
 (0)