Skip to content

Instantly share code, notes, and snippets.

@mixassio
Created March 16, 2019 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mixassio/b00b14d69b2b32c4b53a1e5185aa938c to your computer and use it in GitHub Desktop.
Save mixassio/b00b14d69b2b32c4b53a1e5185aa938c to your computer and use it in GitHub Desktop.
terraform example variables.tf
variable project {
description = "Project ID"
}
variable region {
description = "Region"
default = "europe-west1"
}
variable zone {
description = "Zone"
default = "europe-west1-b"
}
variable public_key_path {
description = "Path to the public key used for ssh access"
}
variable private_key_path {
description = "Path to the private key used for ssh access"
}
variable disk_image {
description = "Disk image"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment