41 lines
893 B
HCL
41 lines
893 B
HCL
variable "project_id" {
|
|
type = string
|
|
default = "d8504e56-fd7e-4640-9308-6d95e8406c7e"
|
|
description = "Project id"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "The region to create things in."
|
|
default = "pl-waw"
|
|
}
|
|
|
|
variable "zone" {
|
|
description = "The zone to create things in."
|
|
default = "pl-waw-1"
|
|
}
|
|
|
|
# Data volume configuration
|
|
variable "data_volume_size" {
|
|
description = "Size of data volume"
|
|
default = 50
|
|
}
|
|
|
|
# Instance configuration
|
|
variable "instance_type" {
|
|
description = "Instance type to create."
|
|
default = "GP1-XS"
|
|
#default = "DEV1-L"
|
|
#default = "DEV1-XL"
|
|
#default = "DEV1-S"
|
|
}
|
|
|
|
variable "instance_image" {
|
|
description = "Instance image to use."
|
|
default = "debian_bullseye"
|
|
}
|
|
|
|
variable "instance_volume_size" {
|
|
description = "Instance type to create."
|
|
default = 100
|
|
}
|