123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- variable "opensearch_pass" {
- description = "Пароль для аутентификации в Opensearch"
- default = ""
- }
- variable "opensearch_user" {
- description = "Пользователь для аутентификации в Opensearch"
- default = ""
- }
- variable "opensearch_dashboard_address" {
- description = "FQDN-адрес инсталляции Opensearch вида https://c-xxx.rw.mdb.yandexcloud.net"
- default = ""
- }
- variable "opensearch_node_address" {
- description = "FQDN-адрес инсталляции Opensearch вида https://rc1a-xxx.mdb.yandexcloud.net"
- default = ""
- }
- variable "subnet_id" {
- description = "subnet_id where you need to place your coi_instance. Need to connect to Opensearch host"
- default = ""
- }
- variable "token" {
- description = "Yandex.Cloud security OAuth token либо ключ сервисного аккаунта"
- default = "key.json" # generate yours by this https://cloud.yandex.ru/docs/iam/concepts/authorization/oauth-token
- }
- variable "folder_id" {
- description = "Yandex.Cloud Folder ID where resources will be created"
- default = "xxxxxx" # yc config get folder-id
- }
- variable "cloud_id" {
- description = "Yandex.Cloud ID where resources will be created"
- default = "xxxxxx" # yc config get cloud-id
- }
- # variable "zones" {
- # description = "Yandex.Cloud default Zone for provisoned resources"
- # type = list(string)
- # default = ["ru-central1-a", "ru-central1-b", "ru-central1-c"]
- # }
- # variable "network_names" {
- # description = "Yandex Cloud default Zone for provisoned resources"
- # type = list(string)
- # default = ["a", "b", "c"]
- # }
- # variable "app_cidrs" {
- # type = list(string)
- # default = ["192.168.1.0/24", "192.168.50.0/24", "192.168.70.0/24"]
- # }
- # variable "var_elk_node_preset" {
- # default = "s2.micro"
- # }
- # variable "var_elk_node_disk_size" {
- # default = "60"
- # }
|