-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
36 lines (31 loc) · 792 Bytes
/
variables.tf
File metadata and controls
36 lines (31 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
variable "postgres_instance_name" {
description = "Cloud SQL instance name"
type = string
}
variable "users" {
description = "Map of users and their attributes, key is the user login"
default = {}
}
variable "owner" {
description = "If set, default privileges will be set for users"
type = string
default = ""
}
variable "database" {
description = "Database name used for permission setup"
type = string
}
variable "save_credentials" {
description = "Save credentials to GCP Secret Manager"
type = bool
default = true
}
variable "expose_password" {
description = "Expose password to Terraform output"
default = false
type = bool
}
variable "project" {
description = "Project ID"
type = string
}