Files
private-ip-cloud-sql-db/modules/dbproxy/variables.tf
Ryan Boehning f7ef3d241a Initial commit
2020-04-19 03:40:44 -07:00

27 lines
654 B
HCL

// dbproxy module
variable "db_instance_name" {
description = "The name of the Cloud SQL db, e.g. my-project:us-centra1:my-sql-db"
type = string
}
variable "machine_type" {
description = "The type of VM you want, e.g. f1-micro, c2-standard-4"
type = string
}
variable "region" {
description = "The region that the proxy instance will run in (e.g. us-central1)"
type = string
}
variable "vpc_name" {
description = "The name of the VPC that the proxy instance will run in"
type = string
}
variable "zone" {
description = "The zone where the VM will be created, e.g. us-centra1-a"
type = string
}