variable "project" {
description = "GCP project ID"
type = string
}
variable "region" {
description = "GCP region"
type = string
default = "us-central1"
}
variable "zone" {
description = "GCP zone"
type = string
default = "us-central1-a"
}
variable "machine_type" {
description = "GCE machine type"
type = string
default = "e2-micro"
}
variable "instance_name" {
description = "Name for the instance"
type = string
default = "terraform-wrapper-example"
}