Terraform
- Plugin Framework
- v1.16.x (latest)
- No versions of this document exist before v1.15.x. Click below to redirect to the version homepage.
- v1.15.x
- v1.14.x
- v1.13.x
- v1.12.x
- v1.11.x
- v1.10.x
- v1.9.x
- v1.8.x
- v1.7.x
- v1.6.x
- v1.5.x
- v1.4.x
- v1.3.x
- v1.2.x
- v1.1.x
- v1.0.x
- v0.16.x
- v0.15.x
- v0.14.x
- v0.13.x
- v0.12.x
- v0.11.x
- v0.10.x
- v0.9.x
- v0.8.x
- v0.7.x
Attribute Types
Note: The Plugin Framework is in beta.
Attributes are the fields in a resource, data source, or provider. They hold the values that end up in state. Every attribute has an attribute type, which describes the constraints on the data the attribute can hold. When you access an attribute from the configuration, state, or plan, you are accessing attribute values, which are the actual data that was found in the configuration, state, or plan.
You can either use the built-in attribute type and value implementations or implement your own.
Null and Unknown Values
There are two values every attribute in Terraform can hold, regardless of their type: null and unknown.
Null
Null represents the absence of a Terraform value. It is usually encountered with optional attributes that the practitioner neglected to specify a value for, but can show up on any non-required attribute. Required attributes can never be null.
Unknown
Unknown represents a Terraform value that is not yet known. Terraform uses a graph of providers, resources, and data sources to do things in the right order, and when a provider, resource, or data source relies on a value from another provider, resource, or data source that has not been resolved yet, it represents that state by using the unknown value. For example:
resource "example_foo" "bar" {
  hello = "world"
  demo = true
}
resource "example_baz" "quux" {
  foo_id = example_foo.bar.id
}
In the example above, example_baz.quux is relying on the id attribute of
example_foo.bar. The id attribute of example_foo.bar isn't known until
after the apply. The plan would list it as (known after apply).  During the
plan phase, example_baz.quux would get an unknown value as the value for
foo_id.
Because they can result from interpolations in the practitioner's config, you have no control over what attributes may contain an unknown value. However, by the time a resource is expected to be created, read, updated, or deleted, only its computed attributes can be unknown. The rest are guaranteed to have known values (or be null).
Provider configuration values can be unknown, and providers should handle that situation, even if that means just returning an error.
Framework Types and Value Types
A collection of attribute types (attr.Type) and attribute value types (attr.Value) is available in the types package. These types bridge the implementation details between Terraform's type system and Go code in providers.
| Terraform Type | Framework Schema Type | Framework Value Type | Known Value Go Type | Use Case | 
|---|---|---|---|---|
| bool | types.BoolType | types.Bool | bool | Boolean true or false | 
| number | types.Float64Type | types.Float64 | float64 | 64-bit floating point number | 
| number | types.Int64Type | types.Int64 | int64 | 64-bit integer | 
| list | types.ListType | types.List | []attr.Value | Ordered collection of single element type | 
| map | types.MapType | types.Map | map[string]attr.Value | Mapping of string keys to single element type | 
| number | types.NumberType | types.Number | *big.Float | Large floating point or number | 
| object | types.ObjectType | types.Object | map[string]attr.Value | Structure mapping string attibute keys to any value type | 
| set | types.SetType | types.Set | []attr.Value | Unordered, unique collection of single element type | 
| string | types.StringType | types.String | string | Collection of UTF-8 encoded characters | 
StringType and String
Strings are a UTF-8 encoded collection of bytes.
Given an example Terraform configuration that sets a string value to the example_attribute attribute:
example_attribute = "terraform"
The associated schema type is types.StringType:
"example_attribute": {
  Type: types.StringType,
  // ... other fields ...
}
The associated value type is types.String in configuration, plan, and state data.
Access types.String information via the following methods:
- (types.String).IsNull() bool: Returns true if the string is null.
- (types.String).IsUnknown() bool: Returns true if the string is unknown.
- (types.String).ValueString() string: Returns the known string, or an empty string if null or unknown.
The (types.String).String() method is reserved for debugging purposes and returns "<null>" if the value is null and "<unknown>" if the value is unknown. Use (types.String).ValueString() for any Terraform data handling.
Call one of the following to create a types.String:
- types.StringNull(): A null string value.
- types.StringUnknown(): An unknown string value.
- types.StringValue(string): A known value.
Int64Type and Int64
Int64 are 64-bit integer values, such as 1234. For 64-bit floating point numbers, use Float64Type and Float64. For generic number handling, use NumberType and Number.
Given an example Terraform configuration that sets an integer value to the example_attribute attribute:
example_attribute = 1234
The associated schema type is types.Int64Type:
"example_attribute": {
  Type: types.Int64Type,
  // ... other fields ...
}
The associated value type is types.Int64 in configuration, plan, and state data.
Access types.Int64 information via the following methods:
- (types.Int64).IsNull() bool: Returns true if the integer is null.
- (types.Int64).IsUnknown() bool: Returns true if the integer is unknown.
- (types.Int64).ValueInt64() int64: Returns the known- int64value, or- 0if null or unknown.
Call one of the following to create a types.Int64:
- types.Int64Null(): A null integer value.
- types.Int64Unknown(): An unknown integer value.
- types.Int64Value(int64): A known value.
Float64Type and Float64
Float64 are 64-bit floating point values, such as 1234.5. For 64-bit integer numbers, use Int64Type and Int64. For generic number handling, use NumberType and Number.
Given an example Terraform configuration that sets a floating point value to the example_attribute attribute:
example_attribute = 1234.5
The associated schema type is types.Float64Type:
"example_attribute": {
  Type: types.Float64Type,
  // ... other fields ...
}
The associated value type is types.Float64 in configuration, plan, and state data.
Access types.Float64 information via the following methods:
- (types.Float64).IsNull() bool: Returns true if the number is null.
- (types.Float64).IsUnknown() bool: Returns true if the number is unknown.
- (types.Float64).ValueFloat64() float64: Returns the known- float64value, or- 0.0if null or unknown.
Call one of the following to create a types.Float64:
- types.Float64Null(): A null number value.
- types.Float64Unknown(): An unknown number value.
- types.Float64Value(float64): A known value.
NumberType and Number
Numbers are numeric values, both whole values like 12 or fractional values like 3.14. Use this type for exceptionally large numbers. For 64-bit integer numbers, use Int64Type and Int64. For 64-bit floating point numbers, use Float64Type and Float64.
Given an example Terraform configuration that sets a number value to the example_attribute attribute:
example_attribute = 123
The associated schema type is types.NumberType:
"example_attribute": {
  Type: types.NumberType,
  // ... other fields ...
}
The associated value type is types.Number in configuration, plan, and state data.
Access types.Number information via the following methods:
- (types.Number).IsNull() bool: Returns true if the number is null.
- (types.Number).IsUnknown() bool: Returns true if the number is unknown.
- (types.Number).ValueBigFloat() *big.Float: Returns the known- *big.Floatvalue, or- nilif null or unknown.
Call one of the following to create a types.Number:
- types.NumberNull(): A null number value.
- types.NumberUnknown(): An unknown number value.
- types.NumberValue(*big.Float): A known value.
BoolType and Bool
Bools are boolean values that can either be true or false.
Given an example Terraform configuration that sets a boolean value to the example_attribute attribute:
example_attribute = true
The associated schema type is types.BoolType:
"example_attribute": {
  Type: types.BoolType,
  // ... other fields ...
}
The associated value type is types.Bool in configuration, plan, and state data.
Access types.Bool information via the following methods:
- (types.Bool).IsNull() bool: Returns true if the boolean is null.
- (types.Bool).IsUnknown() bool: Returns true if the boolean is unknown.
- (types.Bool).ValueBool() bool: Returns the known- boolvalue, or- falseif null or unknown.
Call one of the following to create a types.Bool:
- types.BoolNull(): A null boolean value.
- types.BoolUnknown(): An unknown boolean value.
- types.BoolValue(bool): A known value.
ListType and List
Lists are ordered collections of a single element type.
Use ListNestedAttributes for lists of objects that need additional schema information. Use SetType and Set for unordered collections.
Given an example Terraform configuration that sets a list of string values to the example_attribute attribute:
example_attribute = ["red", "blue", "green"]
The associated schema type is types.ListType:
"example_attribute": {
  Type: types.ListType{
    ElemType: types.StringType,
  },
  // ... other fields ...
}
The associated value type is types.List in configuration, plan, and state data.
Access types.List information via the following methods:
- (types.List).IsNull() bool: Returns true if the list is null.
- (types.List).IsUnknown() bool: Returns true if the list is unknown. Returns false if the number of elements is known, any of which may be unknown.
- (types.List).Elements() []attr.Value: Returns the known- []attr.Valuevalue, or- nilif null or unknown.
- (types.List).ElementsAs(context.Context, any, bool) diag.Diagnostics: Converts the known values into the given Go type, if possible, using the conversion rules.
Call one of the following to create a types.List:
- types.ListNull(attr.Type) types.List: A null list value with the given element type.
- types.ListUnknown(attr.Type) types.List: An unknown list value with the given element type.
- types.ListValue(attr.Type, []attr.Value) (types.List, diag.Diagnostics): A known value with the given element type and values.
- types.ListValueFrom(context.Context, attr.Type, any) (types.List, diag.Diagnostics): A known value with the given element type and values. Can convert from standard Go types, using the conversion rules.
- types.ListValueMust(map[string]attr.Type, map[string]attr.Value) types.List: A known value with the given element type and values. Any diagnostics are converted to a runtime panic. This is recommended only for testing or exhaustively tested logic.
MapType and Map
Maps are mappings of string keys to values of a single element type.
Use MapNestedAttributes for maps of objects that need additional schema information. Use ObjectType and Object for structures of string attribute names to any value.
Given an example Terraform configuration that sets a map of string values to the example_attribute attribute:
example_attribute = {
  red   = "fire",
  blue  = "sky",
  green = "plant",
}
The associated schema type is types.MapType:
"example_attribute": {
  Type: types.MapType{
    ElemType: types.StringType,
  },
  // ... other fields ...
}
The associated value type is types.Map in configuration, plan, and state data.
Access types.Map information via the following methods:
- (types.Map).IsNull() bool: Returns true if the map is null.
- (types.Map).IsUnknown() bool: Returns true if the map is unknown. Returns false if the number of elements is known, any of which may be unknown.
- (types.Map).Elements() map[string]attr.Value: Returns the known- map[string]attr.Valuevalue, or- nilif null or unknown.
- (types.Map).ElementsAs(context.Context, any, bool) diag.Diagnostics: Converts the known values into the given Go type, if possible, using the conversion rules.
Call one of the following to create a types.Map:
- types.MapNull(attr.Type): A null map value with the given element type.
- types.MapUnknown(attr.Type): An unknown map value with the given element type.
- types.MapValue(attr.Type, map[string]attr.Value) (types.Map, diag.Diagnostics): A known value with the given element type and values.
- types.MapValueFrom(context.Context, attr.Type, any) (types.Map, diag.Diagnostics): A known value with the given element type and values. Can convert from standard Go types, using the conversion rules.
- types.MapValueMust(map[string]attr.Type, map[string]attr.Value) types.Map: A known value with the given element type and values. Any diagnostics are converted to a runtime panic. This is recommended only for testing or exhaustively tested logic.
ObjectType and Object
Objects are mappings of string attribute names to values of any type. Objects must always declare all attribute values, even when those attributes are null or unknown, unless the entire object is null or unknown.
Use SingleNestedAttributes for objects that need additional schema information. Use MapType and Map for mappings of string keys to a single element type.
Given an example Terraform configuration that sets a map of string values to the example_attribute attribute:
example_attribute = {
  pi    = 3.14
  demo  = true
  color = "red"
}
The associated schema type is types.ObjectType:
"example_attribute": {
  Type: types.ObjectType{
    AttrTypes: map[string]attr.Type{
      "pi":    types.Float64Type,
      "demo":  types.BoolType,
      "color": types.StringType,
    },
  },
  // ... other fields ...
}
The associated value type is types.Object in configuration, plan, and state data.
Access types.Object information via the following methods:
- (types.Object).IsNull() bool: Returns true if the object is null.
- (types.Object).IsUnknown() bool: Returns true if the object is unknown. Returns false if the number of elements is known, any of which may be unknown.
- (types.Object).Attributes() map[string]attr.Value: Returns the known- map[string]attr.Valuevalue, or- nilif null or unknown.
- (types.Object).As(context.Context, any, ObjectAsOptions) diag.Diagnostics: Converts the known values into the given Go type, if possible, using the conversion rules.
Call one of the following to create a types.Object:
- types.ObjectNull(map[string]attr.Type) types.Object: A null object value with the given attribute type mapping.
- types.ObjectUnknown(map[string]attr.Type) types.Object: An unknown object value with the given attribute type mapping.
- types.ObjectValue(map[string]attr.Type, map[string]attr.Value) (types.Object, diag.Diagnostics): A known value with the given attribute type mapping and attribute value mapping.
- types.ObjectValueFrom(context.Context, attr.Type, any) (types.Object, diag.Diagnostics): A known value with the given attribute type mapping and values. Can convert from standard Go types, using the conversion rules.
- types.ObjectValueMust(map[string]attr.Type, map[string]attr.Value) types.Object: A known value with the given attribute type mapping and attribute value mapping. Any diagnostics are converted to a runtime panic. This is recommended only for testing or exhaustively tested logic.
SetType and Set
Set are unordered, unique collections of a single element type.
Use SetNestedAttributes for sets of objects that need additional schema information. Use ListType and List for ordered collections.
Given an example Terraform configuration that sets a set of string values to the example_attribute attribute:
example_attribute = ["red", "blue", "green"]
The associated schema type is types.SetType:
"example_attribute": {
  Type: types.SetType{
    ElemType: types.StringType,
  },
  // ... other fields ...
}
The associated value type is types.Set in configuration, plan, and state data.
Access types.Set information via the following methods:
- (types.Set).IsNull() bool: Returns true if the list is null.
- (types.Set).IsUnknown() bool: Returns true if the list is unknown. Returns false if the number of elements is known, any of which may be unknown.
- (types.Set).Elements() []attr.Value: Returns the known- []attr.Valuevalue, or- nilif null or unknown.
- (types.Set).ElementsAs(context.Context, any, bool) diag.Diagnostics: Converts the known values into the given Go type, if possible, using the conversion rules.
Call one of the following to create a types.Set:
- types.SetNull(attr.Type) types.Set: A null list value with the given element type.
- types.SetUnknown(attr.Type) types.Set: An unknown list value with the given element type.
- types.SetValue(attr.Type, []attr.Value) (types.Set, diag.Diagnostics): A known value with the given element type and values.
- types.SetValueFrom(context.Context, attr.Type, any) (types.Set, diag.Diagnostics): A known value with the given element type and values. Can convert from standard Go types, using the conversion rules.
- types.SetValueMust(map[string]attr.Type, map[string]attr.Value) types.Set: A known value with the given element type and values. Any diagnostics are converted to a runtime panic. This is recommended only for testing or exhaustively tested logic.
Create Provider-Defined Types and Values
You may want to build your own attribute value and type implementations to allow your provider to combine validation, description, and plan customization behaviors into a reusable bundle. This helps avoid duplication or reimplementation and ensures consistency.
Important: Specifying plan customization for attribute types is not yet supported, limiting their utility. Support is expected in the near future.
attr.Type Interface
Use the attr.Type
interface
to implement an attribute type. It tells Terraform about its constraints and tells the framework how to create new attribute values from the information Terraform supplies. attr.Type has the following methods.
| Method | Description | 
|---|---|
| TerraformType | Returns the tftypes.Typevalue that describes its type constraints. This is how Terraform will know what type of values it can accept. | 
| ValueFromTerraform | Returns an attribute value from the tftypes.Valuethat Terraform supplies, or to return an error if it cannot. This error should not be used for validation purposes, and is expected to indicate programmer error, not practitioner error. | 
| Equal | Returns true if the attribute type is considered equal to the passed attribute type. | 
AttributePathStepper Interface
All attribute types must implement the tftypes.AttributePathStepper
interface,
so the framework can access element or attribute types using attribute paths.
xattr.TypeWithValidation Interface
If validation for type values is desired, use the xattr.TypeWithValidation interface to include validation logic for type values. The framework will call this functionality when validating all values based on the schema.
| Method | Description | 
|---|---|
| Validate | Returns any warning or error diagnostics for the given value. | 
Type-Specific Interfaces
| Case | Interface | Description | 
|---|---|---|
| Elements of the same type | TypeWithElementType | Attribute types that contain elements of the same type, like maps and lists, are required to implement attr.TypeWithElementType, which addsWithElementTypeandElementTypemethods to theattr.Typeinterface.WithElementTypemust return a copy of the attribute type, but with its element type set to the passed type.ElementTypemust return the attribute type's element type. | 
| Elements of different types | TypeWithElementTypes | Attribute types that contain elements of differing types, like tuples, are required to implement the attr.TypeWithElementTypes, which addsWithElementTypesandElementTypesmethods to theattr.Typeinterface.WithElementTypesmust return a copy of the attribute type, but with its element types set to the passed element types.ElementTypesmust return the attribute type's element types. | 
| Contain attributes | TypeWithAttributeTypes | Attribute types that contain attributes, like objects, are required to implement the attr.TypeWithAttributeTypesinterface, which addsWithAttributeTypesandAttributeTypesmethods to theattr.Typeinterface.WithAttributeTypesmust return a copy of the attribute type, but with its attribute types set to the passed attribute types.AttributeTypesmust return the attribute type's attribute types. | 
attr.Value Interface
Use the attr.Value
interface
to implement an attribute value. It tells the framework how to express that
attribute value in a way that Terraform will understand. attr.Value has the
following methods.
| Method | Description | 
|---|---|
| ToTerraformValue | Returns a Go type that is valid input for tftypes.NewValuefor thetftypes.Typespecified by theattr.Typethat creates theattr.Value. | 
| Equal | Returns true if the passed attribute value should be considered to the attribute value the method is being called on. The passed attribute value is not guaranteed to be of the same Go type. |