Skip to content

to_snake_case (Function)

Convert text to snake_case using provide-foundation utilities.

~> Note: This provider is currently in POC (proof-of-concept) status and under active development. Features and APIs may change without notice. Not intended for production infrastructure.

Example Usage

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

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

Signature

to_snake_case(input)

Arguments