mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
11 lines
269 B
Terraform
11 lines
269 B
Terraform
|
variable "ec2_size" {
|
||
|
type = string
|
||
|
description = "Size of instance to launch"
|
||
|
default = "t3a.small" # 2 GB RAM ($14/mo)
|
||
|
}
|
||
|
|
||
|
variable "images_bucket" {
|
||
|
description = "Name of the bucket in which to store the NixOS VM images."
|
||
|
type = string
|
||
|
}
|