diff options
author | Vincent Ambo <mail@tazj.in> | 2023-04-21T14·18+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-04-24T10·56+0000 |
commit | 55c9f4a8036b7eb4cc56b700d5d975f47029337a (patch) | |
tree | 52e8c2d89e5986f0297fb2abbb8cf87b9c7bafbb /corp/ops/main.tf | |
parent | 159646787a9696bbea4a1274c18b2b72ee501100 (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 'corp/ops/main.tf')
-rw-r--r-- | corp/ops/main.tf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/corp/ops/main.tf b/corp/ops/main.tf new file mode 100644 index 000000000000..98cea4c63175 --- /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" + } + } +} |