Skip to content

lower (Function)

Convert a string to lowercase.

Example Usage

locals {
  example_result = upper(
    # Function arguments here
  )
}

output "function_result" {
  description = "Result of upper function"
  value       = local.example_result
}

Signature

lower(str)

Arguments