about summary refs log tree commit diff
path: root/corp/ops/main.tf
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2023-04-21T14·18+0300
committertazjin <tazjin@tvl.su>2023-04-24T10·56+0000
commit55c9f4a8036b7eb4cc56b700d5d975f47029337a (patch)
tree52e8c2d89e5986f0297fb2abbb8cf87b9c7bafbb /corp/ops/main.tf
parent159646787a9696bbea4a1274c18b2b72ee501100 (diff)
feat(corp/ops): bootstrap separate corp terraform config r/6107
Doesn't actually contain any configuration yet, just setting up TF
with the right providers and so on.

Change-Id: Ia7128dd977b4ff69eebaa36c6cad6ac104cafcdb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8492
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to '')
-rw-r--r--corp/ops/main.tf10
1 files changed, 10 insertions, 0 deletions
diff --git a/corp/ops/main.tf b/corp/ops/main.tf
new file mode 100644
index 0000000000..98cea4c631
--- /dev/null
+++ b/corp/ops/main.tf
@@ -0,0 +1,10 @@
+# Terraform configuration for TVL corp infrastructure (on Yandex
+# Cloud).
+
+terraform {
+  required_providers {
+    yandex = {
+      source = "yandex-cloud/yandex"
+    }
+  }
+}