Skip to content

Commit 22dcc47

Browse files
committed
fix: fixing schema computing variables
1 parent 54e2ad2 commit 22dcc47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

provider/datasource_rediscloud_active_active_subscription_regions.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,22 @@ func dataSourceRedisCloudActiveActiveSubscriptionRegions() *schema.Resource {
5050
"database_id": {
5151
Description: "A numeric id for the database",
5252
Type: schema.TypeInt,
53-
Required: true,
53+
Computed: true,
5454
},
5555
"database_name": {
5656
Description: "A meaningful name to identify the database",
5757
Type: schema.TypeString,
58-
Required: true,
58+
Computed: true,
5959
},
6060
"write_operations_per_second": {
6161
Description: "Write operations per second for the database",
6262
Type: schema.TypeInt,
63-
Required: true,
63+
Computed: true,
6464
},
6565
"read_operations_per_second": {
6666
Description: "Read operations per second for the database",
6767
Type: schema.TypeInt,
68-
Required: true,
68+
Computed: true,
6969
},
7070
},
7171
},

0 commit comments

Comments
 (0)