Julien Corioland 24455a9336
Samples: end-to-end testing (#47)
Add a new sample for end-to-end testing in Terraform projects.
2020-06-18 14:48:42 +02:00

11 lines
326 B
HCL

variable location {
type = string
description = "The Azure location where the resources will be created."
default = "westeurope"
}
variable ssh_public_key_file {
type = string
description = "The file path of the public SSH key to use for the virtual machine."
default = "~/.ssh/id_rsa.pub"
}