Skip to content

Commit fc2db9e

Browse files
Correct Nested Attributes doc links (#804)
1 parent 41190b2 commit fc2db9e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

website/docs/plugin/framework/handling-data/attributes.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ Call one of the following to create a `types.Bool`:
245245

246246
Lists are ordered collections of a single element type.
247247

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.
249249

250250
Given an example Terraform configuration that sets a list of string values to the `example_attribute` attribute:
251251

@@ -283,7 +283,7 @@ Call one of the following to create a `types.List`:
283283

284284
Maps are mappings of string keys to values of a single element type.
285285

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.
287287

288288
Given an example Terraform configuration that sets a map of string values to the `example_attribute` attribute:
289289

@@ -325,7 +325,7 @@ Call one of the following to create a `types.Map`:
325325

326326
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.
327327

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.
329329

330330
Given an example Terraform configuration that sets a map of string values to the `example_attribute` attribute:
331331

@@ -371,7 +371,7 @@ Call one of the following to create a `types.Object`:
371371

372372
Set are unordered, unique collections of a single element type.
373373

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.
375375

376376
Given an example Terraform configuration that sets a set of string values to the `example_attribute` attribute:
377377

0 commit comments

Comments
 (0)