21 lines
451 B
HCL
21 lines
451 B
HCL
variable "ansible_hostname" {
|
|
description = "hostname where we will run the playbook"
|
|
type = string
|
|
}
|
|
|
|
variable "ansible_playbook_path" {
|
|
description = "Path of the playbook to run"
|
|
type = string
|
|
}
|
|
|
|
variable "ansible_ssh_user" {
|
|
description = "User to connect as in ssh"
|
|
type = string
|
|
default = "root"
|
|
}
|
|
|
|
variable "ansible_key_file" {
|
|
description = "Private key to use for connection"
|
|
type = string
|
|
}
|