Skip to content

Commit d715104

Browse files
fix: remove honeycomb_api_key from example configuration
The example still referenced the removed variable, breaking terraform validate in CI. Co-authored-by: Ona <no-reply@ona.com>
1 parent 416ee84 commit d715104

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

examples/runner-with-networking/main.tf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,9 @@ module "runner" {
172172
create_cmek = var.create_cmek
173173
kms_key_name = var.kms_key_name
174174

175-
custom_images = var.custom_images
176-
enable_agents = var.enable_agents
177-
honeycomb_api_key = var.honeycomb_api_key
178-
labels = var.labels
175+
custom_images = var.custom_images
176+
enable_agents = var.enable_agents
177+
labels = var.labels
179178

180179
depends_on = [module.networking, module.dns, module.self_signed_cert, module.certbot]
181180
}

examples/runner-with-networking/variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,3 @@ variable "enable_agents" {
201201
default = true
202202
}
203203

204-
variable "honeycomb_api_key" {
205-
description = "Honeycomb API key for development tracing. Enables tracing on the runner and environments when set."
206-
type = string
207-
default = ""
208-
sensitive = true
209-
}

0 commit comments

Comments
 (0)