Dynamic Function Return
Tip
Static types should always be preferred over dynamic types, when possible.
Developers creating a function with a dynamic return will need to have extensive knowledge of the Terraform type system to understand how the value type returned can impact practitioner configuration.
Refer to Dynamic Data - Considerations for more information.
Dynamic function return can be any value type from function logic. Set values in function logic with the framework dynamic type.
Function Definition
Use the function.DynamicReturn
type in the function definition.
In this example, a function definition includes a dynamic return:
Custom Types
You may want to build your own data value and type implementations to allow your provider to combine validation and other behaviors into a reusable bundle. This helps avoid duplication and ensures consistency. These implementations use the CustomType
field in the return type.
Refer to Custom Types for further details on creating provider-defined types and values.
Documentation
Return documentation is expected in the top-level function documentation. Refer to function documentation for information about the Summary
, Description
, and MarkdownDescription
fields available.
Setting Return Data
The function implementation documentation covers the general methods for setting function return data in function logic.
When setting the value for this return:
- If
CustomType
is set, use its associated value type. - Otherwise, use the framework dynamic type.
In this example, a function defines a dynamic return and sets its value to a string:
For more detail on working with dynamic values, see the framework dynamic type documentation.