forked from open-telemetry/opentelemetry-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
35 lines (30 loc) · 991 Bytes
/
variables.tf
File metadata and controls
35 lines (30 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
variable "name" {
type = string
description = "Name of created function and API Gateway"
default = "hello-java-okhttp-wrapper"
}
variable "collector_layer_arn" {
type = string
description = "ARN for the Lambda layer containing the OpenTelemetry collector extension"
// TODO(anuraaga): Add default when a public layer is published.
}
variable "sdk_layer_arn" {
type = string
description = "ARN for the Lambda layer containing the OpenTelemetry Java Wrapper"
// TODO(anuraaga): Add default when a public layer is published.
}
variable "tracing_mode" {
type = string
description = "Lambda function tracing mode"
default = "PassThrough"
}
variable "architecture" {
type = string
description = "Lambda function architecture, valid values are arm64 or x86_64"
default = "x86_64"
}
variable "runtime" {
type = string
description = "java runtime used for sample Lambda Function"
default = "java11"
}