-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tf
More file actions
31 lines (27 loc) · 794 Bytes
/
main.tf
File metadata and controls
31 lines (27 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
terraform {
required_providers {
yandex = {
source = "yandex-cloud/yandex"
version = "~> 0.129"
}
}
required_version = "~> 1.10.0"
backend "s3" {
endpoints = {
s3 = "https://storage.yandexcloud.net"
dynamodb = "https://docapi.serverless.yandexcloud.net/ru-central1/b1g92d8a7m2lbe44meuq/etn9ja887cgvon0b54gf"
}
bucket = "sleeping-bag-locator-terraform"
region = "ru-central1"
key = "deploy.tfstate"
dynamodb_table = "state-lock-table"
skip_region_validation = true
skip_credentials_validation = true
skip_requesting_account_id = true
skip_s3_checksum = true
}
}
provider "yandex" {
cloud_id = "b1g92d8a7m2lbe44meuq"
folder_id = "b1gupci5t21aji0ah4f5"
}