From 46a61bc2537d58f8d6dc445ef42fdf6d93f459c8 Mon Sep 17 00:00:00 2001 From: David Flanagan Date: Mon, 15 May 2023 11:19:29 -0400 Subject: [PATCH] fix: IDs are ints --- provider/resources.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/provider/resources.go b/provider/resources.go index 2aa42f9..423d429 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -102,6 +102,12 @@ func Provider() tfbridge.ProviderInfo { }, "rediscloud_subscription": { Tok: tfbridge.MakeResource(mainPkg, mainMod, "Subscription"), + Fields: map[string]*tfbridge.SchemaInfo{ + "id": { + Name: "id", + Type: "int", + }, + }, }, "rediscloud_subscription_database": { Tok: tfbridge.MakeResource(mainPkg, mainMod, "SubscriptionDatabase"),