14 lines
162 B
Terraform
14 lines
162 B
Terraform
|
variable "name" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "ram" {
|
||
|
type = number
|
||
|
description = "In MiB"
|
||
|
}
|
||
|
|
||
|
variable "storage" {
|
||
|
type = number
|
||
|
description = "In GiB"
|
||
|
}
|