12 lines
147 B
Terraform
12 lines
147 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
yandex = {
|
||
|
source = "yandex-cloud/yandex"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "yandex" {
|
||
|
zone = "ru-central1-b"
|
||
|
}
|