-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
40 lines (34 loc) · 1.08 KB
/
variables.tf
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
37
38
39
40
variable "gcp_project" {
type = string
default = ""
description = "The GCP project id in which the Cloud SQL instance will be deployed"
}
variable "gcp_region" {
type = string
default = ""
description = "The GCP region in which the Cloud SQL instance will be deployed"
}
variable "instance_name" {
type = string
description = "The name of the Cloud SQL instance"
}
variable "instance_version" {
type = string
default = "POSTGRES_14"
description = "The Cloud SQL version string for the instance"
}
variable "instance_tier" {
type = string
default = "db-f1-micro"
description = "The Cloud SQL instance tier to configure the underlying VM resources"
}
variable "instance_databases" {
type = list(string)
default = []
description = "A list of database to create. WARNING: user permissions are not managed."
}
variable "instance_users" {
type = list(string)
default = []
description = "A list of users to create. Password are generated by Terraform. WARNING: user permissions are not managed."
}