passwords: either specified or random

This commit is contained in:
Natalia Strelkova
2022-10-05 14:11:10 +00:00
parent b5a5150bb8
commit b11ae47738
3 changed files with 33 additions and 13 deletions

View File

@@ -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
}