From e8c86da6dd8ac29765281fac555d283fc06fc71e Mon Sep 17 00:00:00 2001 From: Kobi Samoray Date: Tue, 24 Sep 2024 19:05:39 +0200 Subject: [PATCH] Correct nat_type attribute in vpc_nat datasource Signed-off-by: Kobi Samoray --- website/docs/d/vpc_nat.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/d/vpc_nat.html.markdown b/website/docs/d/vpc_nat.html.markdown index f8a9956ce..9b9c115f8 100644 --- a/website/docs/d/vpc_nat.html.markdown +++ b/website/docs/d/vpc_nat.html.markdown @@ -30,13 +30,13 @@ data "nsxt_vpc_nat" "test" { project_id = data.nsxt_policy_project.proj.id vpc_id = data.nsxt_vpc.vpc1.id } - type = "USER" + nat_type = "USER" } ``` ## Argument Reference -* `type` - (Required) Type of NAT, one of `USER`, `INTERNAL`, `DEFAULT` or `NAT64`. +* `nat_type` - (Required) Type of NAT, one of `USER`, `INTERNAL`, `DEFAULT` or `NAT64`. * `context` - (Required) The context which the object belongs to * `project_id` - (Required) The ID of the project which the object belongs to * `vpc_id` - (Required) The ID of the VPC which the object belongs to