Files
asteam 6f40af6a5f 1.0.0
2024-07-25 14:33:38 +03:00

30 lines
753 B
HCL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
Пример использования
Получение информации о vfpool по его id
*/
#Раскомментируйте этот код,
#и внесите необходимые правки в версию и путь,
#чтобы работать с установленным вручную (не через hashicorp provider registry) провайдером
/*
terraform {
required_providers {
dynamix = {
source = "basistech.ru/tf/dynamix"
version = "<VERSION>"
}
}
}
*/
data "dynamix_vfpool" "vfpool" {
#идентификатор vfpool
#обязательный параметр
#тип - целое число
vfpool_id = 2
}
output "test" {
value = data.dynamix_vfpool.vfpool
}