Skip to content
Snippets Groups Projects
Commit 69a7960b authored by Eesaan Atluri's avatar Eesaan Atluri
Browse files

Add ssh related var defs to variables.pkr.hcl

parent cdf5b805
No related branches found
No related tags found
No related merge requests found
......@@ -25,12 +25,6 @@ variable "flavor" {
description = "The name of the flavor to use"
}
variable "ssh_username" {
type = string
default = "centos"
description = "The default username to use for SSH"
}
variable "floating_ip_network" {
type = string
description = "floating ip network to use with (temporary) ip assignmnet to a vm"
......@@ -46,3 +40,18 @@ variable "security_groups" {
default = []
description = "A list of security groups to add - you should make sure ssh access is open to the machine"
}
variable "ssh_username" {
type = string
default = "centos"
description = "The default username to use for SSH"
}
variable "ssh_keypair_name" {
type = string
description = "SSH keypair to use from OS project"
}
variable "ssh_private_key_file" {
type = string
description = "Private key file"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment