terraform-wrapper 0.4.0

A type-safe Terraform CLI wrapper for Rust
Documentation
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"
}