variable "collector_layer_name" { type = string description = "Name of published collector layer" default = "opentelemetry-collector" } variable "function_name" { type = string description = "Name of sample app function / API gateway" default = "hello-dotnet-awssdk-wrapper" } variable "tracing_mode" { type = string description = "Lambda function tracing mode" default = "Active" } variable "enable_collector_layer" { type = bool description = "Enables building and usage of a layer for the collector. If false, it means either the SDK layer includes the collector or it is not used." default = true } variable "architecture" { type = string description = "Lambda function architecture, valid values are arm64 or x86_64" default = "x86_64" }