You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 rivejä
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. }