diff --git a/debian/main.tf b/debian/main.tf index 7688c72..b188cdb 100644 --- a/debian/main.tf +++ b/debian/main.tf @@ -25,4 +25,5 @@ module "tf_debian_vm" { memory = var.memory data_disk = var.data_disk fixed_address = var.fixed_address + ansible_command = var.ansible_command } diff --git a/debian/variables.tf b/debian/variables.tf index 5c268f2..5b5d907 100644 --- a/debian/variables.tf +++ b/debian/variables.tf @@ -58,6 +58,11 @@ variable "data_disk" { } variable "fixed_address" { - type = string + type = string default = "" } + +variable "ansible_command" { + type = string + default = "true" +}