This commit is contained in:
2023-12-18 18:36:55 +03:00
parent 294680282e
commit e2ee45ee14
155 changed files with 10125 additions and 17209 deletions

View File

@@ -26,21 +26,20 @@ provider "decort" {
allow_unverified_ssl = true
}
data "decort_sep_pool" "sp" {
data "decort_cb_sep_pool" "sp" {
#id sep
#обязательный параметр
#тип - число
sep_id = 1111
#sep pool name
#обязательный параметр
#тип - строка
pool_name = "sep_pool"
}
output "test" {
value = data.decort_sep_pool.sp
}
output "pool" {
value = jsondecode(data.decort_sep_pool.sp.pool)
}
value = {
for k, v in data.decort_cb_sep_pool.sp.pool : k => v
}
}