Slide 23
Slide 23 text
23
Atlas のデータガバナンス
テーブル定義やスケジュールクエリ、データ転送、アカウント等データ管理に関わる
大部分を terraform で管理し、変更適用は(ほぼ)すべて Github 経由で行う
TF
test_ds/test_table.json
[
{ “name”: “col1”, “type”: “STRING”, “mode”: “REQUIRED” },
…
]
variable tables {
default = }
“test_ds.test_table” = { description = “テスト表” }
….
}
}
テーブルを管理する用の terraform ファイル
テーブル定義用の JSON ファイル