From 1a7511b5dabec6b529e0decbe2edcddd8da70067 Mon Sep 17 00:00:00 2001 From: Jack Muskopf Date: Thu, 8 May 2025 14:19:10 -0500 Subject: [PATCH] Fix argument in example resource See line 28 - should be `partition_values` not `values` --- website/docs/r/glue_partition.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/r/glue_partition.html.markdown b/website/docs/r/glue_partition.html.markdown index 01b7b5dd3449..0e8df7383f9d 100644 --- a/website/docs/r/glue_partition.html.markdown +++ b/website/docs/r/glue_partition.html.markdown @@ -14,9 +14,9 @@ Provides a Glue Partition Resource. ```terraform resource "aws_glue_partition" "example" { - database_name = "some-database" - table_name = "some-table" - values = ["some-value"] + database_name = "some-database" + table_name = "some-table" + partition_values = ["some-value"] } ```