Samples: end-to-end testing (#47)
Add a new sample for end-to-end testing in Terraform projects.
This commit is contained in:
11
samples/end-to-end-testing/src/variables.tf
Normal file
11
samples/end-to-end-testing/src/variables.tf
Normal 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"
|
||||
}
|
Reference in New Issue
Block a user