@@ -180,9 +180,9 @@ variable "superusers" {
180180}
181181
182182variable  "worker_pool_name"  {
183-     description  =  " Name of the private worker pool." 
184-     type         =  string 
185-     default      =  " eps-private-pool" #  Or make it required by removing default
183+   description  =  " Name of the private worker pool." 
184+   type         =  string 
185+   default      =  " eps-private-pool" #  Or make it required by removing default
186186}
187187
188188variable  "db_password_key"  {
@@ -229,9 +229,9 @@ variable "app_image_name" {
229229#  Note: _DB_HOST uses another substitution, so we pass the template string
230230#  It could be made more dynamic if needed, but this keeps the Cloud Build logic
231231variable  "db_host_template"  {
232-     description  =  " Template for DB host using Cloud Build substitution for instance connection name." 
233-     type         =  string 
234-     default      =  " /cloudsql/$${_INSTANCE_CONNECTION_NAME}" #  Note the $$ to escape Terraform interpolation
232+   description  =  " Template for DB host using Cloud Build substitution for instance connection name." 
233+   type         =  string 
234+   default      =  " /cloudsql/$${_INSTANCE_CONNECTION_NAME}" #  Note the $$ to escape Terraform interpolation
235235}
236236
237237
@@ -257,9 +257,9 @@ variable "git_user_name" {
257257}
258258
259259variable  "git_host"  {
260-     description  =  " Hostname of the Git provider (e.g., github.com)." 
261-     type         =  string 
262-     default      =  " github.com" 
260+   description  =  " Hostname of the Git provider (e.g., github.com)." 
261+   type         =  string 
262+   default      =  " github.com" 
263263}
264264
265265
@@ -270,13 +270,13 @@ variable "source_branch_name" {
270270}
271271
272272variable  "trigger_service_account_email"  {
273-     description  =  " Email of the service account for the trigger." 
274-     type         =  string 
273+   description  =  " Email of the service account for the trigger." 
274+   type         =  string 
275275}
276276
277277variable  "github_app_id"  {
278278  description  =  " Cloud build app id for your github organisation" 
279279  type         =  number  #  Using number type as it's an ID. String would also work.
280280  nullable     =  false   #  Make it mandatory to provide a value
281-   default      =  
281+   default      =  null    #   {your github cloudbuild app id}" 
282282}
0 commit comments