Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Истории успеха
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Доступны в регионе
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • AI Studio
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Партнёрская программа
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Истории успеха
  • Документация
  • Блог
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»
Terraform в Yandex Cloud
  • Начало работы
  • Библиотека решений
    • Обзор
    • История изменений
          • sws_advanced_rate_limiter_profile
          • sws_security_profile
          • sws_waf_profile
          • sws_waf_rule_set_descriptor

В этой статье:

  • Example usage
  • Schema
  • Required
  • Optional
  • Read-Only
  • Nested Schema for rules
  1. Справочник Terraform
  2. Ресурсы
  3. Smart Web Security (SWS)
  4. Data Sources
  5. sws_waf_rule_set_descriptor

yandex_sws_waf_rule_set_descriptor (Data Source)

Статья создана
Yandex Cloud
Обновлена 18 июля 2025 г.
  • Example usage
  • Schema
    • Required
    • Optional
    • Read-Only
    • Nested Schema for rules

Get information about WAF rule sets. For more information, see the official documentation.

This data source is used to get list of rules that can be used by yandex_sws_waf_profile.

Example usageExample usage

//
// Get information about existing SWS WAF Rule Descriptor
//
data "yandex_sws_waf_rule_set_descriptor" "owasp4" {
  name    = "OWASP Core Ruleset"
  version = "4.0.0"
}

SchemaSchema

RequiredRequired

  • version (String) Version of the rule set.

OptionalOptional

  • name (String) Name of the rule set.
  • rule_set_descriptor_id (String) ID of the rule set.

Read-OnlyRead-Only

  • id (String) The ID of this resource.
  • rules (List of Object) List of rules.
    • anomaly_score (Number) Numeric anomaly value, i.e., a potential attack indicator. The higher this value, the more likely it is that the request that satisfies the rule is an attack. See documentation.
    • paranoia_level (Number) Paranoia level classifies rules according to their aggression. The higher the paranoia level, the better your protection, but also the higher the probability of WAF false positives. See documentation.
    • id (String) The rule ID. (see below for nested schema)

Nested Schema for Nested Schema for rules

Read-Only:

  • anomaly_score (Number)
  • id (String)
  • paranoia_level (Number)

Была ли статья полезна?

Предыдущая
sws_waf_profile
Следующая
sws_advanced_rate_limiter_profile
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»