From e3403d22dcb17b0f7b134eaf054a20d999112599 Mon Sep 17 00:00:00 2001 From: Artur Sawicki Date: Mon, 4 Dec 2023 15:04:11 +0100 Subject: [PATCH] Format tf files --- .../testdata/TestAcc_PasswordPolicy_basic/test.tf | 14 +++++++------- .../TestAcc_PasswordPolicy_noOptionals/test.tf | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkg/resources/testdata/TestAcc_PasswordPolicy_basic/test.tf b/pkg/resources/testdata/TestAcc_PasswordPolicy_basic/test.tf index ba2cc77b13..9eb152aef4 100644 --- a/pkg/resources/testdata/TestAcc_PasswordPolicy_basic/test.tf +++ b/pkg/resources/testdata/TestAcc_PasswordPolicy_basic/test.tf @@ -1,9 +1,9 @@ resource "snowflake_password_policy" "pa" { - name = var.name - database = var.database - schema = var.schema - min_length = var.min_length - max_length = var.max_length - comment = var.comment - or_replace = true + name = var.name + database = var.database + schema = var.schema + min_length = var.min_length + max_length = var.max_length + comment = var.comment + or_replace = true } \ No newline at end of file diff --git a/pkg/resources/testdata/TestAcc_PasswordPolicy_noOptionals/test.tf b/pkg/resources/testdata/TestAcc_PasswordPolicy_noOptionals/test.tf index 5f056aafbc..a5dc3e4ebc 100644 --- a/pkg/resources/testdata/TestAcc_PasswordPolicy_noOptionals/test.tf +++ b/pkg/resources/testdata/TestAcc_PasswordPolicy_noOptionals/test.tf @@ -1,5 +1,5 @@ resource "snowflake_password_policy" "pa" { - name = var.name - database = var.database - schema = var.schema + name = var.name + database = var.database + schema = var.schema } \ No newline at end of file