We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c992b0a commit d58783cCopy full SHA for d58783c
1 file changed
website/docs/list-resources/route53_zone_association.html.markdown
@@ -15,11 +15,16 @@ Lists Route 53 Zone Association resources.
15
```terraform
16
list "aws_route53_zone_association" "example" {
17
provider = aws
18
+
19
+ config {
20
+ vpc_id = aws_vpc.example.id
21
+ }
22
}
23
```
24
25
## Argument Reference
26
27
This list resource supports the following arguments:
28
-* `region` - (Optional) Region to query. Defaults to provider region.
29
+* `vpc_id` - (Required) ID of the VPC to list hosted zone associations for.
30
+* `vpc_region` - (Optional) Region of the VPC. Defaults to the provider region.
0 commit comments