Skip to content
Snippets Groups Projects
Commit c765377f authored by Ryan Randles Jones's avatar Ryan Randles Jones
Browse files

added pub and private keys files

parent f933fb1d
No related branches found
No related tags found
1 merge request!18Variable update branch
...@@ -13,6 +13,19 @@ variable "public-network-name" { ...@@ -13,6 +13,19 @@ variable "public-network-name" {
variable "keypair-name" { variable "keypair-name" {
default = "os-gen-keypair" default = "os-gen-keypair"
} }
variable "ssh_public_key" {
description = "Path to file containing public key"
default =
"~/.ssh/id_rsa.pub"
}
variable "ssh_private_key" {
description = "Path to file containing private key"
default =
"~/.ssh/id_rsa"
}
variable "enable-dhcp" { variable "enable-dhcp" {
description = "whether dhcp in enabled. defualt is true" description = "whether dhcp in enabled. defualt is true"
......
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