123456789101112131415161718192021222324252627282930313233 |
- //------------Служебные параметры terrafromf
- variable "token" {
- description = "Yandex Cloud security OAuth token"
- default = "<Ваш токен>" #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 = "<Ваш фолдер" #yc config get folder-id
- }
- variable "cloud_id" {
- description = "Yandex Cloud ID where resources will be created"
- default = "<Ваш cloud>" #yc config get cloud-id
- }
- //------------
- variable "network_cidrs" {
- description = "Cidrs for networks"
- type = list(string)
- default = ["192.168.10.0/24", "192.168.20.0/24", "192.168.30.0/24"]
- }
- variable "network_naames" {
- description = "Yandex Cloud default Zone for provisoned resources"
- type = list(string)
- default = ["mgmt-subnet", "win-subnet", "lin-subnet"]
- }
|