This commit is contained in:
26
variables.tf
26
variables.tf
@@ -0,0 +1,26 @@
|
||||
variable "instance_name" {
|
||||
description = "the name of the database instance to create"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
description = "the GCP region to deploy the database to"
|
||||
type = string
|
||||
default = "europe-west1"
|
||||
}
|
||||
|
||||
variable "database_tier" {
|
||||
description = "the database tier to use"
|
||||
type = string
|
||||
default = "db-f1-micro"
|
||||
}
|
||||
|
||||
variable "database_name" {
|
||||
description = "the name of the database to create in the instance"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "database_user_name" {
|
||||
description = "the name of the database user to create"
|
||||
type = string
|
||||
}
|
||||
Reference in New Issue
Block a user