We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 465610a commit b8e4444Copy full SHA for b8e4444
internal/provider/resource_database.go
@@ -505,7 +505,7 @@ func flattenDatabase(db *astra.Database) map[string]interface{} {
505
"data_endpoint_url": astra.StringValue(db.DataEndpointUrl),
506
"cqlsh_url": astra.StringValue(db.CqlshUrl),
507
"cloud_provider": "",
508
- "regions": [1]string{astra.StringValue(db.Info.Region)},
+ "regions": []string{astra.StringValue(db.Info.Region)},
509
"keyspace": astra.StringValue(db.Info.Keyspace),
510
"additional_keyspaces": astra.StringSlice(db.Info.AdditionalKeyspaces),
511
"node_count": db.Storage.NodeCount,
0 commit comments