terraform/haifa-reminder-vars.tf

17 lines
292 B
Terraform
Raw Permalink Normal View History

2023-03-30 13:29:03 +00:00
variable "instance_type" {
type = string
default = "t2.micro"
description = "EC2 instance type"
}
variable "region" {
type = string
default = "eu-central-1"
description = "AWS region"
}
variable "ami" {
type = string
default = "ami-0ec7f9846da6b0f61"
description = "AMI ID"
}