mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-12 23:42:56 +00:00
21 lines
564 B
HCL
21 lines
564 B
HCL
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
|
|
}
|
|
|
|
variable "terraform_state_bucket" {
|
|
description = "Name of the bucket in which to store the Terraform state information."
|
|
type = string
|
|
}
|
|
|
|
variable "terraform_state_key" {
|
|
description = "Path of the file in which to store the Terraform state information."
|
|
type = string
|
|
}
|