passwords: either specified or random
This commit is contained in:
@@ -21,6 +21,12 @@ variable "cloud_run_invoker" {
|
||||
default = "allUsers"
|
||||
}
|
||||
|
||||
variable "cloudsql_password" {
|
||||
type = string
|
||||
description = "CloudSQL password (will be randomly generated by default)"
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "connector_cidr" {
|
||||
type = string
|
||||
description = "CIDR block for the VPC serverless connector (10.8.0.0/28 by default)"
|
||||
@@ -81,4 +87,10 @@ variable "wordpress_port" {
|
||||
type = number
|
||||
description = "Port for the Wordpress image (8080 by default)"
|
||||
default = 8080
|
||||
}
|
||||
|
||||
variable "wordpress_password" {
|
||||
type = string
|
||||
description = "Password for the Wordpress user (will be randomly generated by default)"
|
||||
default = null
|
||||
}
|
||||
Reference in New Issue
Block a user