added examples

This commit is contained in:
Pin
2022-04-07 17:38:09 -04:00
parent 48c36914ac
commit e87051a151
2 changed files with 38 additions and 0 deletions

7
examples/secret.tf Normal file
View File

@@ -0,0 +1,7 @@
variable "apiToken" {
default = ""
}
variable "apiTokenID" {
default = ""
}

31
examples/vars.tf Normal file
View File

@@ -0,0 +1,31 @@
variable "proxmox_host" {
default = ""
}
variable "proxmox_api_url" {
default = ""
}
variable "template_name" {
default = ""
}
variable "ssh_key" {
default = ""
}
variable "ssh_user" {
default = ""
}
variable "vm_storage_disk" {
default = ""
}
variable "vm_network_bridge" {
default = ""
}
variable "vm_pool" {
default = ""
}