You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/plugin/framework/handling-data/attributes.mdx
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -245,7 +245,7 @@ Call one of the following to create a `types.Bool`:
245
245
246
246
Lists are ordered collections of a single element type.
247
247
248
-
-> Use [List Nested Attributes](/terraform/plugin/framework/schemas#ListNestedAttributes) for lists of objects that need additional schema information. Use [Set](#set) for unordered collections.
248
+
-> Use [List Nested Attributes](/terraform/plugin/framework/handling-data/attributes#listnestedattribute) for lists of objects that need additional schema information. Use [Set](#set) for unordered collections.
249
249
250
250
Given an example Terraform configuration that sets a list of string values to the `example_attribute` attribute:
251
251
@@ -283,7 +283,7 @@ Call one of the following to create a `types.List`:
283
283
284
284
Maps are mappings of string keys to values of a single element type.
285
285
286
-
-> Use [Map Nested Attributes](/terraform/plugin/framework/schemas#MapNestedAttributes) for maps of objects that need additional schema information. Use [Object](#object) for structures of string attribute names to any value.
286
+
-> Use [Map Nested Attributes](/terraform/plugin/framework/handling-data/attributes#mapnestedattribute) for maps of objects that need additional schema information. Use [Object](#object) for structures of string attribute names to any value.
287
287
288
288
Given an example Terraform configuration that sets a map of string values to the `example_attribute` attribute:
289
289
@@ -325,7 +325,7 @@ Call one of the following to create a `types.Map`:
325
325
326
326
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.
327
327
328
-
-> Use [Single Nested Attributes](/terraform/plugin/framework/schemas#SingleNestedAttributes) for objects that need additional schema information. Use [Map](#map) for mappings of string keys to a single element type.
328
+
-> Use [Single Nested Attributes](/terraform/plugin/framework/handling-data/attributes#singlenestedattribute) for objects that need additional schema information. Use [Map](#map) for mappings of string keys to a single element type.
329
329
330
330
Given an example Terraform configuration that sets a map of string values to the `example_attribute` attribute:
331
331
@@ -371,7 +371,7 @@ Call one of the following to create a `types.Object`:
371
371
372
372
Set are unordered, unique collections of a single element type.
373
373
374
-
-> Use [Set Nested Attributes](/terraform/plugin/framework/schemas#SetNestedAttributes) for sets of objects that need additional schema information. Use [List](#list) for ordered collections.
374
+
-> Use [Set Nested Attributes](/terraform/plugin/framework/handling-data/attributes#setnestedattribute) for sets of objects that need additional schema information. Use [List](#list) for ordered collections.
375
375
376
376
Given an example Terraform configuration that sets a set of string values to the `example_attribute` attribute:
0 commit comments