From 3bea31ab080c5a29f8b6c08225711a432cc566ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20G=C4=99bala?= Date: Fri, 27 Sep 2024 22:35:21 +0200 Subject: [PATCH] adding variable --- variables.tf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 867fedd..2a7939f 100644 --- a/variables.tf +++ b/variables.tf @@ -6,7 +6,7 @@ variable "ssh_privkey_path" { description = "The path to the ssh private key to auth to the instances" } -#An up-to-date list of supported Crusoe Cloud images can be found at -> https://docs.crusoecloud.com/compute/images/overview +#An up-to-date list of supported Crusoe Cloud images can be found at -> https://docs.crusoecloud.com/compute/images/overview variable "headnode_image" { description = "The image to use for creating the headnode instance" default = "ubuntu22.04:latest" @@ -50,3 +50,7 @@ variable "instance_name_prefix" { description = "Prefix to use for the instance names" default = "crusoe" } + +variable "vpc_subnet" { + description = "The subnet instances should be connected to" +}