mirror of https://github.com/hashicorp/boundary
test(e2e): Update worker module to create recordings directory if defined (#3340)
parent
8d9222bec3
commit
e39f0406f3
@ -0,0 +1,33 @@
|
||||
# Copyright (c) HashiCorp, Inc.
|
||||
# SPDX-License-Identifier: MPL-2.0
|
||||
|
||||
listener "tcp" {
|
||||
purpose = "proxy"
|
||||
tls_disable = true
|
||||
address = "0.0.0.0"
|
||||
}
|
||||
|
||||
worker {
|
||||
# Name attr must be unique across workers
|
||||
name = "worker-${id}"
|
||||
description = "Enos Boundary worker ${id}"
|
||||
|
||||
# Workers must be able to reach controllers on :9201
|
||||
initial_upstreams = ${controller_addresses}
|
||||
|
||||
public_addr = "${public_addr}"
|
||||
|
||||
tags {
|
||||
region = ["${region}"]
|
||||
type = ${type}
|
||||
}
|
||||
|
||||
recording_storage_path = "${recording_storage_path}"
|
||||
}
|
||||
|
||||
# must be same key as used on controller config
|
||||
kms "awskms" {
|
||||
purpose = "worker-auth"
|
||||
region = "${region}"
|
||||
kms_key_id = "${kms_key_id}"
|
||||
}
|
||||
Loading…
Reference in new issue