Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 331 Bytes

File metadata and controls

14 lines (12 loc) · 331 Bytes

ydb_table_index resource

Example

resource "ydb_table_index" "index" {
    table_path        = "path/to/table"
    connection_string = "grpc://localhost:2136/?database=/local"
    name              = "my_index"
    type              = "global_sync"
    columns           = ["a", "b"]
    cover             = ["c"]
}