Skip to content

Commit 1e87c12

Browse files
authored
disable fw sql user test (#15788)
1 parent d5614b9 commit 1e87c12

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

mmv1/third_party/terraform/services/sql/fw_resource_sql_user.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ import (
2525
sqladmin "google.golang.org/api/sqladmin/v1beta4"
2626
)
2727

28+
//resource is non-functional, preserved for reference with ongoing fwprovider work
29+
//any changes to `google_sql_user` should be performed at mmv1/third_party/terraform/services/sql/resource_sql_user.go
30+
2831
var (
2932
_ resource.Resource = &SQLUserFWResource{}
3033
_ resource.ResourceWithConfigure = &SQLUserFWResource{}

mmv1/third_party/terraform/services/sql/fw_resource_sql_user_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ import (
1010
)
1111

1212
func TestAccSqlUserFW_mysql(t *testing.T) {
13+
//tests and resource are non-functional, preserved for reference with ongoing fwprovider work
14+
t.Skip()
1315
// Multiple fine-grained resources
14-
acctest.SkipIfVcr(t)
16+
//acctest.SkipIfVcr(t)
1517
t.Parallel()
1618

1719
instance := fmt.Sprintf("tf-test-%d", acctest.RandInt(t))

0 commit comments

Comments
 (0)