Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 391 Bytes

File metadata and controls

22 lines (18 loc) · 391 Bytes

ydb_table resource

ydb_table resource is used to manage YDB table entity.

Example

resource "ydb_table" "table" {
    table_path        = "path/to/table"
    connection_string = "grpc://localhost:2136/?database=/local"
    column {
        name = "a"
        type = "Utf8"
    }
    column {
        name = "b"
        type = "Uint32"
    }

    primary_key = ["b", "a"]
}