Files
tf_provider/PROD_STAND/PG1/main.tf
T
2026-06-30 15:46:24 +04:00

26 lines
461 B
Terraform

terraform {
required_providers {
nubes = {
source = "terra.k8c.ru/nubes/nubes"
version = "2.1.26"
}
}
}
variable "api_token" {
type = string
sensitive = true
description = "Nubes API token"
}
# variable "s3_uid" {
# type = string
# sensitive = true
# description = "S3 Storage UUID"
# }
provider "nubes" {
api_token = var.api_token
api_endpoint = "https://deck-api.ngcloud.ru/api/v1/index.cfm"
}