From 7f00043c22faef817166230fb7579a192d09cabe Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 18 Jan 2023 11:32:26 -0600 Subject: [PATCH] Fix missing `id` in migration example The migration example does not include an id in the migration blocks but the id is required. --- examples/resources/sql_migrate/resource.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/resources/sql_migrate/resource.tf b/examples/resources/sql_migrate/resource.tf index 2f41305..10a81de 100644 --- a/examples/resources/sql_migrate/resource.tf +++ b/examples/resources/sql_migrate/resource.tf @@ -1,5 +1,6 @@ resource "sql_migrate" "db" { migration { + id = "create-users-table" up = <