選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
285 B

  1. variable "vms" {
  2. type = list
  3. description = "Virtual machine definition list."
  4. }
  5. variable "default_ssh_pubkey" {
  6. type = string
  7. description = "Public key to use to connect on system"
  8. }
  9. variable "azvm_depends_on" {
  10. type = any
  11. default = null
  12. }