Skip to content

Commit 2371d96

Browse files
Fix typos in documentation for data sources
1 parent 6c52135 commit 2371d96

File tree

1 file changed

+3
-3
lines changed
  • content/terraform/v1.13.x/docs/language/data-sources

1 file changed

+3
-3
lines changed

content/terraform/v1.13.x/docs/language/data-sources/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ data "aws_ami" "example" {
6868
}
6969
```
7070

71-
The `data` block instructs Terraform to read from the `aws_ami` data source and export the result to an object named `example`. To reference the returned data, use the `data.<TYPE>.<LABEL>.<ATTRIBUTE>` syntax, for example, `data.aws_ami.example.id`. Refer to [Reference queried data](#referenece-queried-data) for more information.
71+
The `data` block instructs Terraform to read from the `aws_ami` data source and export the result to an object named `example`. To reference the returned data, use the `data.<TYPE>.<LABEL>.<ATTRIBUTE>` syntax, for example, `data.aws_ami.example.id`. Refer to [Reference queried data](#reference-queried-data) for more information.
7272

7373
## Configure query constraints
7474

@@ -113,7 +113,7 @@ data "aws_ami" "example" {
113113
}
114114
```
115115

116-
Custom conditions return useful information about errors earlier and in context so that you can more easily diagnose configuration issues. They also help future maintainers understand the configuration design and intent. Refer to [Custom Condition Checks](/terraform/language/expressions/custom-conditions#preconditions-and-postconditions) for more details.
116+
Custom conditions return useful information about errors earlier and in context so that you can more easily diagnose configuration issues. They also help future maintainers understand the configuration design and intent. Refer to [Custom Condition Checks](/terraform/language/expressions/conditionals#conditions) for more details.
117117

118118
### Multiple instances
119119

@@ -187,4 +187,4 @@ resource "aws_instance" "web" {
187187
}
188188
```
189189

190-
The `filter` blocks, and the arguments within them, and the `most_recent` argument are specific to the `aws_ami` provider. Refer to the [AWS provider documenation](https://registry.terraform.io/providers/hashicorp/aws/latest) in the Terraform registry for details.
190+
The `filter` blocks, and the arguments within them, and the `most_recent` argument are specific to the `aws_ami` provider. Refer to the [AWS provider documenation](https://registry.terraform.io/providers/hashicorp/aws/latest) in the Terraform registry for details.

0 commit comments

Comments
 (0)