22 lines
441 B
Terraform
22 lines
441 B
Terraform
terraform {
|
|
required_providers {
|
|
nubes = {
|
|
source = "tf-registry.containerk8s.services.ngcloud.ru/nubes/nubes"
|
|
version = "2.1.12"
|
|
}
|
|
}
|
|
}
|
|
|
|
variable "api_token" {
|
|
type = string
|
|
sensitive = true
|
|
description = "Nubes API token"
|
|
}
|
|
|
|
provider "nubes" {
|
|
api_token = var.api_token
|
|
# ⛔ LEGACY: deck-api ЗАКРЫВАЕТСЯ. Gateway:
|
|
api_endpoint = "https://lk-api-gateway.ngcloud.ru/api/v1/svc"
|
|
}
|
|
|