to_camel_case (Function)¶
Convert text to camelCase (or PascalCase if upper_first is true).
Example Usage¶
locals {
example_result = upper(
# Function arguments here
)
}
output "function_result" {
description = "Result of upper function"
value = local.example_result
}
Signature¶
to_camel_case(input)