Samples: end-to-end testing (#47)

Add a new sample for end-to-end testing in Terraform projects.
This commit is contained in:
Julien Corioland
2020-06-18 14:48:42 +02:00
committed by GitHub
parent 74170d8203
commit 24455a9336
11 changed files with 400 additions and 1 deletions

View File

@ -0,0 +1,11 @@
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"
}