34 lines
854 B
Terraform
34 lines
854 B
Terraform
variable "api_token" {
|
|
description = "Nubes API token"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "api_endpoint" {
|
|
description = "Deck API endpoint"
|
|
type = string
|
|
default = "https://deck-api-test.ngcloud.ru/api/v1/index.cfm"
|
|
}
|
|
|
|
variable "s3_uid" {
|
|
description = "UID существующего nubes_s3 (root S3 service)"
|
|
type = string
|
|
}
|
|
|
|
variable "bucket_name" {
|
|
description = "Имя создаваемого бакета"
|
|
type = string
|
|
}
|
|
|
|
variable "s3cfg_path" {
|
|
description = "Путь до .s3cfg_registry для доступа к S3"
|
|
type = string
|
|
default = "/home/naeel/remote_dev/terraform/secrets/.s3cfg_registry"
|
|
}
|
|
|
|
variable "demo_timeout_sec" {
|
|
description = "Таймаут ожидания события в функции"
|
|
type = number
|
|
default = 25
|
|
}
|