Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

30 righe
494 B

  1. variable "vms" {
  2. type = list
  3. description = "Virtual machine list"
  4. }
  5. variable "ags" {
  6. type = list
  7. description = "Action Group list"
  8. }
  9. variable "als" {
  10. type = list
  11. description = "Alerts list"
  12. }
  13. variable "tags" {
  14. type = map(string)
  15. description = "Tags pour les ressources"
  16. }
  17. variable "rg_name" {
  18. type = string
  19. description = "Resource Group Name"
  20. }
  21. variable "azalert_depends_on" {
  22. type = any
  23. default = null
  24. }