Modify : file variable
Some checks failed
terraform validation / Terraform (push) Has been cancelled
Some checks failed
terraform validation / Terraform (push) Has been cancelled
This commit is contained in:
parent
a791f5d04d
commit
0479b634bc
@ -1,26 +1,33 @@
|
||||
variable "instance_name" {
|
||||
description = "the name of the database instance to create"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
description = "the GCP region to deploy the database to"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "europe-west1"
|
||||
}
|
||||
|
||||
variable "database_tier" {
|
||||
description = "the database tier to use"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "db-f1-micro"
|
||||
}
|
||||
|
||||
variable "database_name" {
|
||||
description = "the name of the database to create in the instance"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "demo"
|
||||
}
|
||||
|
||||
variable "database_user_name" {
|
||||
description = "the name of the database user to create"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "administrator"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user