Skip to content

Instantly share code, notes, and snippets.

@vshatravenko
Created September 12, 2017 12:04
Show Gist options
  • Save vshatravenko/6487ddb6212634940a5790e4fc3a3597 to your computer and use it in GitHub Desktop.
Save vshatravenko/6487ddb6212634940a5790e4fc3a3597 to your computer and use it in GitHub Desktop.
variable "project" {
type = "string"
}
variable "region" {
type = "string"
default = "us-east1"
}
variable "zone" {
type = "string"
default = "us-east1-d"
}
variable "credentials" {
type = "string"
}
variable "vpc_name" {
type = "string"
default = "platform-tools"
}
variable "subnet_cidr" {
type = "string"
default = "10.0.0.0/24"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment